Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions resources/config/nightwatch-local.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const browserStack = {
userName: process.env.BROWSERSTACK_USERNAME,
accessKey: process.env.BROWSERSTACK_ACCESS_KEY,
appiumVersion: '1.22.0',

}
},
}
Expand All @@ -26,7 +26,7 @@ const nightwatchConfigs = {
src_folders: [],
live_output: true,
plugins: ['@nightwatch/browserstack'],

// browserstack plugin settings...
'@nightwatch/browserstack': {
browserstackLocal: true, // set true to manage browserstack local tunnel. Defaults to false.
Expand All @@ -37,7 +37,7 @@ const nightwatchConfigs = {
projectName: "browserstack-appium-nightwatch-example-project",
buildName: "browserstack-appium-nightwatch-example-build",
}

},

test_settings: {
Expand All @@ -48,7 +48,7 @@ const nightwatchConfigs = {
browserstack: {
...browserStack
},

"browserstack.local_01": {
extends: 'browserstack',
'desiredCapabilities': {
Expand All @@ -57,8 +57,8 @@ const nightwatchConfigs = {
automationName: 'UiAutomator2',
// custom id for the uploaded app: https://www.browserstack.com/docs/app-automate/appium/upload-app-define-custom-id
app: 'bs_sample_android_local_app',
platformVersion: '9.0',
deviceName: 'Google Pixel 3'
platformVersion: '14.0',
deviceName: 'Google Pixel 8 Pro'
},
appUploadPath: 'apps/android_local_app.apk'
}
Expand All @@ -71,8 +71,8 @@ const nightwatchConfigs = {
automationName: 'UiAutomator2',
// custom id for the uploaded app: https://www.browserstack.com/docs/app-automate/appium/upload-app-define-custom-id
app: 'bs_sample_android_local_app',
platformVersion: '9.0',
deviceName: 'Samsung Galaxy S10'
platformVersion: '12.0',
deviceName: 'Samsung Galaxy S22 Ultra'
}
}
},
Expand Down
16 changes: 8 additions & 8 deletions resources/config/nightwatch-suite.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const nightwatchConfigs = {
"./tests/specs/cart/*.spec.js",],
live_output: true,
plugins: ['@nightwatch/browserstack'],

// browserstack plugin settings...
'@nightwatch/browserstack': {
browserstackLocal: false, // set true to manage browserstack local tunnel. Defaults to false.
Expand All @@ -40,7 +40,7 @@ const nightwatchConfigs = {
projectName: "browserstack-appium-nightwatch-example-project",
buildName: "browserstack-appium-nightwatch-example-build",
}

},

test_settings: {
Expand All @@ -51,8 +51,8 @@ const nightwatchConfigs = {
browserstack: {
...browserStack
},



"browserstack.android_01": {
extends: 'browserstack',
Expand All @@ -62,8 +62,8 @@ const nightwatchConfigs = {
automationName: 'UiAutomator2',
// custom id for the uploaded app: https://www.browserstack.com/docs/app-automate/appium/upload-app-define-custom-id
app: 'bs_sample_android_app',
platformVersion: '11.0',
deviceName: 'Google Pixel 5'
platformVersion: '14.0',
deviceName: 'Google Pixel 8 Pro'
}
}
},
Expand All @@ -75,8 +75,8 @@ const nightwatchConfigs = {
automationName: 'UiAutomator2',
// custom id for the uploaded app: https://www.browserstack.com/docs/app-automate/appium/upload-app-define-custom-id
app: 'bs_sample_android_app',
platformVersion: '11.0',
deviceName: 'Google Pixel 4'
platformVersion: '13.0',
deviceName: 'One Plus 11R'
}
}
},
Expand Down
14 changes: 7 additions & 7 deletions resources/config/nightwatch.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const nightwatchConfigs = {
src_folders: [],
live_output: true,
plugins: ['@nightwatch/browserstack'],

// browserstack plugin settings...
'@nightwatch/browserstack': {
browserstackLocal: false, // set true to manage browserstack local tunnel. Defaults to false.
Expand All @@ -36,10 +36,10 @@ const nightwatchConfigs = {
projectName: "browserstack-appium-nightwatch-example-project",
buildName: "browserstack-appium-nightwatch-example-build",
}

},



test_settings: {
default: {
Expand All @@ -58,8 +58,8 @@ const nightwatchConfigs = {
automationName: 'UiAutomator2',
// custom id for the uploaded app: https://www.browserstack.com/docs/app-automate/appium/upload-app-define-custom-id
app: 'bs_sample_android_app',
platformVersion: '11.0',
deviceName: 'Google Pixel 5'
platformVersion: '14.0',
deviceName: 'Google Pixel 8 Pro'
},
appUploadPath: 'apps/android_app.apk'
}
Expand All @@ -74,7 +74,7 @@ const nightwatchConfigs = {
// custom id for the uploaded app: https://www.browserstack.com/docs/app-automate/appium/upload-app-define-custom-id
app: 'bs_sample_ios_app',
platformVersion: '16',
deviceName: 'iPhone 14'
deviceName: 'iPhone 14 Pro Max'
},
appUploadPath: 'apps/ios_app.ipa'
}
Expand Down