froth-webdriverio-framework 1.0.60 → 1.0.62
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
|
@@ -10,8 +10,8 @@ const androidConfig = deepmerge.all([commonmobileconfig, {
|
|
|
10
10
|
'browserstack',
|
|
11
11
|
{
|
|
12
12
|
testObservability: true,
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
// buildName: "ANDROID BUILD",
|
|
14
|
+
// buildIdentifier: "ANDROID BUILD_" + process.env.BUILD_NUMBER,
|
|
15
15
|
browserstackLocal: false,
|
|
16
16
|
opts: {
|
|
17
17
|
forcelocal: false },
|
|
@@ -25,7 +25,9 @@ const androidConfig = deepmerge.all([commonmobileconfig, {
|
|
|
25
25
|
deviceName: process.env.DEVICENAME,
|
|
26
26
|
platformVersion: process.env.OSVERSION,
|
|
27
27
|
platformName: 'android',
|
|
28
|
-
interactiveDebugging: true
|
|
28
|
+
interactiveDebugging: true,
|
|
29
|
+
buildName: process.env.BROWSERSTACK_BUILD_NAME || 'default-build-name',
|
|
30
|
+
|
|
29
31
|
}
|
|
30
32
|
}],
|
|
31
33
|
before: function (capabilities, specs) {
|
|
@@ -29,7 +29,7 @@ const commonmobconfig = deepmerge.all([commonconfig, {
|
|
|
29
29
|
commonCapabilities: {
|
|
30
30
|
'bstack:options': {
|
|
31
31
|
projectName: process.env.PROJECTNAME || "roboticodigital",
|
|
32
|
-
|
|
32
|
+
// buildName: "Automation Build",
|
|
33
33
|
sessionName: 'Automation test session',
|
|
34
34
|
debug: true,
|
|
35
35
|
networkLogs: true
|
package/config/ios.conf.js
CHANGED
|
@@ -7,7 +7,7 @@ const iosconfig = deepmerge.all([commonmobileconfig, {
|
|
|
7
7
|
'browserstack',
|
|
8
8
|
{
|
|
9
9
|
testObservability: true,
|
|
10
|
-
|
|
10
|
+
buildIdentifier: `#${process.env.BUILD_NUMBER}`,
|
|
11
11
|
browserstackLocal: false,
|
|
12
12
|
opts: {
|
|
13
13
|
forcelocal: false,
|
|
@@ -23,7 +23,9 @@ const iosconfig = deepmerge.all([commonmobileconfig, {
|
|
|
23
23
|
deviceName: process.env.DEVICENAME || "iPhone 15 Pro Max",
|
|
24
24
|
osVersion: process.env.OSVERSION || "17",
|
|
25
25
|
platformName: 'iOS',
|
|
26
|
-
interactiveDebugging: true
|
|
26
|
+
interactiveDebugging: true,
|
|
27
|
+
buildName: process.env.BROWSERSTACK_BUILD_NAME || 'default-build-name',
|
|
28
|
+
|
|
27
29
|
}
|
|
28
30
|
}],
|
|
29
31
|
|
package/config/web.conf.bs.js
CHANGED
|
@@ -20,7 +20,7 @@ const webbsconfig = deepmerge.all([commonconfig, {
|
|
|
20
20
|
// user: 'prabathkumar_qavxGX' || process.env.BROWSERSTACK_USERNAME,
|
|
21
21
|
// key: 'RvqEi62rhwa5QwGJtweZ' || process.env.BROWSERSTACK_ACCESS_KEY,
|
|
22
22
|
projectName: process.env.PROJECTNAME || "roboticodigital",
|
|
23
|
-
|
|
23
|
+
// buildName: 'WEB BUILD',
|
|
24
24
|
buildTag: 'WEB BUILD',
|
|
25
25
|
},
|
|
26
26
|
}]
|
|
@@ -37,6 +37,8 @@ const webbsconfig = deepmerge.all([commonconfig, {
|
|
|
37
37
|
resolution: '1920x1080', // Specify the screen resolution
|
|
38
38
|
'browserstack.networkLogs': true, // Enable network logs
|
|
39
39
|
'browserstack.video': true, // Enable video recording
|
|
40
|
+
buildName: process.env.BROWSERSTACK_BUILD_NAME || 'default-build-name',
|
|
41
|
+
|
|
40
42
|
},
|
|
41
43
|
// Add more capabilities for other browsers or devices as needed
|
|
42
44
|
],
|