@wdio/appium-service 8.0.0-alpha.508 → 8.0.0-alpha.516
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 -8
- 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 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](http://appium.io/docs/en/about-appium/getting-started/index.html#starting-appium) in a child process.
|
|
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](http://appium.io/docs/en/about-appium/getting-started/index.html#starting-appium) in a child process.
|
|
5
5
|
|
|
6
6
|
## Installation
|
|
7
7
|
|
|
@@ -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
|
+
export const 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
|
+
export const config = {
|
|
37
37
|
// ...
|
|
38
38
|
port: 4723, // default appium port
|
|
39
39
|
services: [
|
|
@@ -47,13 +47,13 @@ exports.config
|
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
### logPath
|
|
50
|
-
|
|
50
|
+
The path where all logs from the Appium server should be stored.
|
|
51
51
|
|
|
52
52
|
Type: `String`
|
|
53
53
|
|
|
54
54
|
Example:
|
|
55
55
|
```js
|
|
56
|
-
|
|
56
|
+
export const config = {
|
|
57
57
|
// ...
|
|
58
58
|
services: [
|
|
59
59
|
['appium', {
|
|
@@ -65,13 +65,13 @@ exports.config
|
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
### command
|
|
68
|
-
To use your
|
|
68
|
+
To use your installation of Appium, e.g. globally installed, specify the command which should be started.
|
|
69
69
|
|
|
70
70
|
Type: `String`
|
|
71
71
|
|
|
72
72
|
Example:
|
|
73
73
|
```js
|
|
74
|
-
|
|
74
|
+
export const config = {
|
|
75
75
|
// ...
|
|
76
76
|
services: [
|
|
77
77
|
['appium', {
|
|
@@ -94,7 +94,7 @@ Default: `{}`
|
|
|
94
94
|
|
|
95
95
|
Example:
|
|
96
96
|
```js
|
|
97
|
-
|
|
97
|
+
export const 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": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.516+ef18eb180",
|
|
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",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"types": "./build/index.d.ts",
|
|
31
31
|
"typeScriptVersion": "3.8.3",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@wdio/config": "8.0.0-alpha.
|
|
34
|
-
"@wdio/logger": "8.0.0-alpha.
|
|
35
|
-
"@wdio/types": "8.0.0-alpha.
|
|
33
|
+
"@wdio/config": "8.0.0-alpha.516+ef18eb180",
|
|
34
|
+
"@wdio/logger": "8.0.0-alpha.516+ef18eb180",
|
|
35
|
+
"@wdio/types": "8.0.0-alpha.516+ef18eb180",
|
|
36
36
|
"param-case": "^3.0.4"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "ef18eb180b61077d44a307c0410593930101e842"
|
|
42
42
|
}
|