@wdio/browserstack-service 8.0.0-alpha.508 → 8.0.0-alpha.512
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/README.md +8 -10
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -17,12 +17,12 @@ Instructions on how to install `WebdriverIO` can be found [here.](https://webdri
|
|
|
17
17
|
|
|
18
18
|
## Configuration
|
|
19
19
|
|
|
20
|
-
WebdriverIO has Browserstack support out of the box. You should
|
|
20
|
+
WebdriverIO has Browserstack support out of the box. You should set `user` and `key` in your `wdio.conf.js` file. This service plugin provides support for [Browserstack](https://www.browserstack.com/automate/node#setting-local-tunnel) Tunnel](https://www.browserstack.com/automate/node#setting-local-tunnel). Set `browserstackLocal: true` also to activate this feature.
|
|
21
21
|
Reporting of session status on BrowserStack will respect `strict` setting of Cucumber options.
|
|
22
22
|
|
|
23
23
|
```js
|
|
24
24
|
// wdio.conf.js
|
|
25
|
-
|
|
25
|
+
export const config = {
|
|
26
26
|
// ...
|
|
27
27
|
user: process.env.BROWSERSTACK_USERNAME,
|
|
28
28
|
key: process.env.BROWSERSTACK_ACCESS_KEY,
|
|
@@ -46,20 +46,20 @@ Type: `Boolean`<br />
|
|
|
46
46
|
Default: `false`
|
|
47
47
|
|
|
48
48
|
### preferScenarioName
|
|
49
|
-
Cucumber only. Set this to true to enable updating the session name to the Scenario name if only a single Scenario was
|
|
49
|
+
Cucumber only. Set this to true to enable updating the session name to the Scenario name if only a single Scenario was run. Useful when running in parallel with [wdio-cucumber-parallel-execution](https://github.com/SimitTomar/wdio-cucumber-parallel-execution).
|
|
50
50
|
|
|
51
51
|
Type: `Boolean`<br />
|
|
52
52
|
Default: `false`
|
|
53
53
|
|
|
54
54
|
### forcedStop
|
|
55
|
-
Set this to true to kill the
|
|
55
|
+
Set this to true to kill the Browserstack process on complete, without waiting for the browserstack stop callback to be called. This is experimental and should not be used by all. Mostly necessary as a workaraound for [this issue](https://github.com/browserstack/browserstack-local-nodejs/issues/41).
|
|
56
56
|
|
|
57
57
|
Type: `Boolean`<br />
|
|
58
58
|
Default: `false`
|
|
59
59
|
|
|
60
60
|
### app
|
|
61
61
|
|
|
62
|
-
[Appium](https://appium.io/) set this with app file path available locally on your machine to use the app as [application under test](https://www.browserstack.com/docs/app-automate/appium/set-up-tests/specify-app) for Appium sessions.
|
|
62
|
+
[Appium](https://appium.io/) set this with the app file path available locally on your machine to use the app as [application under test](https://www.browserstack.com/docs/app-automate/appium/set-up-tests/specify-app) for Appium sessions.
|
|
63
63
|
|
|
64
64
|
Type: `String` or `JsonObject`<br />
|
|
65
65
|
Default: `undefined`
|
|
@@ -67,8 +67,7 @@ Default: `undefined`
|
|
|
67
67
|
List of available app values:
|
|
68
68
|
|
|
69
69
|
#### path
|
|
70
|
-
|
|
71
|
-
Use local available app file path as application under test for appium.
|
|
70
|
+
Use locally available app file path as an application under test for Appium.
|
|
72
71
|
|
|
73
72
|
```js
|
|
74
73
|
services: [
|
|
@@ -82,7 +81,7 @@ services: [
|
|
|
82
81
|
]
|
|
83
82
|
```
|
|
84
83
|
|
|
85
|
-
Pass custom_id while app upload.
|
|
84
|
+
Pass custom_id while the app upload.
|
|
86
85
|
|
|
87
86
|
```js
|
|
88
87
|
services: [
|
|
@@ -96,8 +95,7 @@ services: [
|
|
|
96
95
|
```
|
|
97
96
|
|
|
98
97
|
#### id
|
|
99
|
-
|
|
100
|
-
Use app url returned after uploading app to BrowserStack.
|
|
98
|
+
Use the app URL returned after uploading the app to BrowserStack.
|
|
101
99
|
|
|
102
100
|
```js
|
|
103
101
|
services: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/browserstack-service",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.512+fca9082b6",
|
|
4
4
|
"description": "WebdriverIO service for better Browserstack integration",
|
|
5
5
|
"author": "Adam Bjerstedt <abjerstedt@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-browserstack-service",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"typeScriptVersion": "3.8.3",
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@types/node": "^18.0.0",
|
|
31
|
-
"@wdio/logger": "8.0.0-alpha.
|
|
32
|
-
"@wdio/types": "8.0.0-alpha.
|
|
31
|
+
"@wdio/logger": "8.0.0-alpha.512+fca9082b6",
|
|
32
|
+
"@wdio/types": "8.0.0-alpha.512+fca9082b6",
|
|
33
33
|
"browserstack-local": "^1.5.1",
|
|
34
34
|
"form-data": "^4.0.0",
|
|
35
35
|
"got": "^12.1.0",
|
|
36
|
-
"webdriverio": "8.0.0-alpha.
|
|
36
|
+
"webdriverio": "8.0.0-alpha.512+fca9082b6"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@wdio/cli": "^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "fca9082b61da2bbceedf7c68897d07f59f715f0a"
|
|
45
45
|
}
|