froth-webdriverio-framework 0.1.37 → 0.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/config/android.conf.js
CHANGED
|
@@ -7,8 +7,8 @@ const androidConfig = deepmerge.all([commonmobileconfig,{
|
|
|
7
7
|
'browserstack',
|
|
8
8
|
{
|
|
9
9
|
testObservability: true,
|
|
10
|
-
buildName: "
|
|
11
|
-
buildIdentifier: '
|
|
10
|
+
buildName: "ANDROID",
|
|
11
|
+
buildIdentifier: 'BUILD',
|
|
12
12
|
browserstackLocal: true,
|
|
13
13
|
opts: { forcelocal: false, localIdentifier: "webdriverio-appium" },
|
|
14
14
|
app : process.env.BROWSERSTACK_APP_PATH || 'bs://a224145c09eb22e67c21ef65b29d32ae7aa78bb0'
|
|
@@ -36,7 +36,6 @@ const commonmobconfig = deepmerge.all([commonconfig,{
|
|
|
36
36
|
commonCapabilities: {
|
|
37
37
|
'bstack:options': {
|
|
38
38
|
projectName: process.env.PROJECTNAME || "roboticodigital",
|
|
39
|
-
buildName: 'Build',
|
|
40
39
|
sessionName: 'Automation test session',
|
|
41
40
|
debug: true,
|
|
42
41
|
networkLogs: true
|
package/config/commonconfig.js
CHANGED
|
@@ -7,7 +7,7 @@ const commonconfig = {
|
|
|
7
7
|
* @param {Object} config wdio configuration object
|
|
8
8
|
* @param {Array.<Object>} capabilities list of capabilities details
|
|
9
9
|
*/
|
|
10
|
-
|
|
10
|
+
beforeSession: async function (config, capabilities,specs) {
|
|
11
11
|
// This code runs before the test suite starts
|
|
12
12
|
console.log('Preparing for tests...');
|
|
13
13
|
console.log("organisation url" + process.env.organisation_url);
|
package/config/ios.conf.js
CHANGED
|
@@ -7,8 +7,8 @@ const iosconfig = deepmerge.all([commonmobileconfig, {
|
|
|
7
7
|
'browserstack',
|
|
8
8
|
{
|
|
9
9
|
testObservability: true,
|
|
10
|
-
buildName: "
|
|
11
|
-
buildIdentifier: '
|
|
10
|
+
buildName: "IOS",
|
|
11
|
+
buildIdentifier: 'BUILD',
|
|
12
12
|
browserstackLocal: true,
|
|
13
13
|
opts: {
|
|
14
14
|
forcelocal: false,
|