Skip to content

Commit 0dd6ccd

Browse files
committed
add project name and remove lock file
1 parent 89483af commit 0dd6ccd

File tree

10 files changed

+19
-2794
lines changed

10 files changed

+19
-2794
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ npm i
3333
Getting Started with Appium tests using WebdriverIO on BrowserStack couldn't be easier!
3434

3535
### Run first test:
36-
- Switch to `run_first_test` directory under [Android examples](./android) or [iOS examples](./ios)
36+
- Switch to `run-first-test` directory under [Android examples](./android) or [iOS examples](./ios)
3737
- Follow the steps outlined in the documentation - [Get Started with your first test on App Automate](https://www.browserstack.com/docs/app-automate/appium/getting-started/nodejs/webdriverio)
3838

3939
### Speed up test execution with parallel testing :
4040

41-
- Switch to `run_parallel_test` directory under [Android examples](./android) or [iOS examples](./ios)
41+
- Switch to `run-parallel-test` directory under [Android examples](./android) or [iOS examples](./ios)
4242
- Follow the steps outlined in the documentation - [Get Started with parallel testing on App Automate](https://www.browserstack.com/docs/app-automate/appium/getting-started/nodejs/webdriverio/parallelize-tests)
4343

4444
### Use Local testing for apps that access resources hosted in development or testing environments :
4545

46-
- Switch to `run_local_test` directory under [Android examples](./android) or [iOS examples](./ios)
46+
- Switch to `run-local-test` directory under [Android examples](./android) or [iOS examples](./ios)
4747
- Follow the steps outlined in the documentation - [Get Started with Local testing on App Automate](https://www.browserstack.com/docs/app-automate/appium/getting-started/nodejs/webdriverio/local-testing)
4848

4949
**Note**: If you are facing any issues, refer [Getting Help section](#Getting-Help)

android/run-first-test/first.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ exports.config = {
99
exclude: [],
1010

1111
capabilities: [{
12+
project: "First Webdriverio Android Project",
13+
build: 'Webdriverio Android First',
1214
name: 'single_appium_test',
13-
build: 'webdriver-browserstack',
1415
device: 'Google Pixel 3',
1516
os_version: "9.0",
1617
browserName: 'android',

android/run-local-test/local.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ exports.config = {
1111
exclude: [],
1212

1313
capabilities: [{
14+
project: "First Webdriverio Android Project",
15+
build: 'Webdriverio Android Local',
1416
name: 'local_appium_test',
15-
build: 'webdriver-browserstack',
1617
device: 'Google Pixel 3',
1718
os_version: "9.0",
1819
browserName: 'android',

android/run-multiple-test/multiple.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ exports.config = {
99
exclude: [],
1010

1111
capabilities: [{
12+
project: "First Webdriverio Android Project",
13+
build: 'Webdriverio Android Multiple',
1214
name: 'multiple_appium_test',
13-
build: 'webdriver-browserstack',
1415
device: 'Google Pixel 3',
1516
os_version: "9.0",
1617
browserName: 'android',

android/run-parallel-test/parallel.conf.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ exports.config = {
1010

1111
maxInstances: 10,
1212
commonCapabilities: {
13+
project: "First Webdriverio Android Project",
14+
build: 'Webdriverio Android Parallel',
1315
name: 'parallel_appium_test',
14-
build: 'webdriver-browserstack',
1516
browserName: 'android',
1617
app: process.env.BROWSERSTACK_APP_ID || 'bs://<hashed app-id>',
1718
'browserstack.debug': true

0 commit comments

Comments
 (0)