@wdio/appium-service 9.15.0 → 9.16.2
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 +2 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
WebdriverIO Appium Service
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
|
-
Handling the Appium server is out of the scope of the actual WebdriverIO project. This service helps you to run the Appium server seamlessly when running tests with the [WDIO testrunner](https://webdriver.io/docs/clioptions). It starts the [Appium Server](https://appium.
|
|
4
|
+
Handling the Appium server is out of the scope of the actual WebdriverIO project. This service helps you to run the Appium server seamlessly when running tests with the [WDIO testrunner](https://webdriver.io/docs/clioptions). It starts the [Appium Server](https://appium.io/docs/en/latest/quickstart/install/#starting-appium) in a child process.
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
7
|
|
|
@@ -85,7 +85,7 @@ export const config = {
|
|
|
85
85
|
### args
|
|
86
86
|
Map of arguments for the Appium server, passed directly to `appium`.
|
|
87
87
|
|
|
88
|
-
See [the documentation](https://
|
|
88
|
+
See [the documentation](https://appium.io/docs/en/latest/cli/args/) for possible arguments.
|
|
89
89
|
The arguments are supplied in lower camel case. For instance, `debugLogSpacing: true` transforms into `--debug-log-spacing`, or they can be supplied as outlined in the Appium documentation.
|
|
90
90
|
|
|
91
91
|
Type: `Object`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/appium-service",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.16.2",
|
|
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",
|
|
@@ -35,18 +35,18 @@
|
|
|
35
35
|
},
|
|
36
36
|
"typeScriptVersion": "3.8.3",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@wdio/config": "9.
|
|
39
|
-
"@wdio/logger": "9.
|
|
40
|
-
"@wdio/types": "9.
|
|
41
|
-
"@wdio/utils": "9.
|
|
38
|
+
"@wdio/config": "9.16.2",
|
|
39
|
+
"@wdio/logger": "9.16.2",
|
|
40
|
+
"@wdio/types": "9.16.2",
|
|
41
|
+
"@wdio/utils": "9.16.2",
|
|
42
42
|
"change-case": "^5.4.3",
|
|
43
43
|
"get-port": "^7.0.0",
|
|
44
44
|
"import-meta-resolve": "^4.0.0",
|
|
45
45
|
"tree-kill": "^1.2.2",
|
|
46
|
-
"webdriverio": "9.
|
|
46
|
+
"webdriverio": "9.16.2"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "ff2154c00e7ba6d6e2a58e0b8e1258a20229752d"
|
|
52
52
|
}
|