@wdio/appium-service 8.10.0 → 8.10.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 +5 -5
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](
|
|
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.github.io/appium.io/docs/en/about-appium/getting-started/index.html#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](
|
|
88
|
+
See [the documentation](https://appium.github.io/appium.io/docs/en/writing-running-appium/server-args/index.html) for possible arguments.
|
|
89
89
|
The arguments should be supplied in lower camel case, so `--pre-launch true` becomes `preLaunch: true` or passed as an array.
|
|
90
90
|
|
|
91
91
|
Type: `Object` or `Array`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/appium-service",
|
|
3
|
-
"version": "8.10.
|
|
3
|
+
"version": "8.10.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",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
},
|
|
34
34
|
"typeScriptVersion": "3.8.3",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@wdio/config": "8.10.
|
|
36
|
+
"@wdio/config": "8.10.2",
|
|
37
37
|
"@wdio/logger": "8.6.6",
|
|
38
|
-
"@wdio/types": "8.10.
|
|
38
|
+
"@wdio/types": "8.10.2",
|
|
39
39
|
"import-meta-resolve": "^3.0.0",
|
|
40
40
|
"param-case": "^3.0.4",
|
|
41
|
-
"webdriverio": "8.10.
|
|
41
|
+
"webdriverio": "8.10.2"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "fb163d506af31d0c5e5328bfee07d55a56aa0034"
|
|
47
47
|
}
|