@wdio/appium-service 7.18.0 → 7.19.0
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 +5 -5
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ In order to use the service you need to add `appium` to your service array:
|
|
|
19
19
|
|
|
20
20
|
```js
|
|
21
21
|
// wdio.conf.js
|
|
22
|
-
|
|
22
|
+
exports.config
|
|
23
23
|
// ...
|
|
24
24
|
port: 4723, // default appium port
|
|
25
25
|
services: ['appium'],
|
|
@@ -33,7 +33,7 @@ The following options can be added to the wdio.conf.js file. To define options f
|
|
|
33
33
|
|
|
34
34
|
```js
|
|
35
35
|
// wdio.conf.js
|
|
36
|
-
|
|
36
|
+
exports.config
|
|
37
37
|
// ...
|
|
38
38
|
port: 4723, // default appium port
|
|
39
39
|
services: [
|
|
@@ -53,7 +53,7 @@ Type: `String`
|
|
|
53
53
|
|
|
54
54
|
Example:
|
|
55
55
|
```js
|
|
56
|
-
|
|
56
|
+
exports.config
|
|
57
57
|
// ...
|
|
58
58
|
services: [
|
|
59
59
|
['appium', {
|
|
@@ -71,7 +71,7 @@ Type: `String`
|
|
|
71
71
|
|
|
72
72
|
Example:
|
|
73
73
|
```js
|
|
74
|
-
|
|
74
|
+
exports.config
|
|
75
75
|
// ...
|
|
76
76
|
services: [
|
|
77
77
|
['appium', {
|
|
@@ -94,7 +94,7 @@ Default: `{}`
|
|
|
94
94
|
|
|
95
95
|
Example:
|
|
96
96
|
```js
|
|
97
|
-
|
|
97
|
+
exports.config
|
|
98
98
|
// ...
|
|
99
99
|
services: [
|
|
100
100
|
['appium', {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/appium-service",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.19.0",
|
|
4
4
|
"description": "A WebdriverIO service to start & stop Appium Server",
|
|
5
5
|
"author": "Morten Bjerg Gregersen <morten@mogee.dk>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-appium-service",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@types/fs-extra": "^9.0.4",
|
|
30
|
-
"@wdio/config": "7.
|
|
31
|
-
"@wdio/logger": "7.
|
|
32
|
-
"@wdio/types": "7.
|
|
30
|
+
"@wdio/config": "7.19.0",
|
|
31
|
+
"@wdio/logger": "7.19.0",
|
|
32
|
+
"@wdio/types": "7.19.0",
|
|
33
33
|
"fs-extra": "^10.0.0",
|
|
34
34
|
"param-case": "^3.0.0"
|
|
35
35
|
},
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
42
|
"types": "./build/index.d.ts",
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "a17ba0237dcbafa8f0215534c64ff9634caf4b43"
|
|
44
44
|
}
|