@wdio/firefox-profile-service 7.18.0 → 7.19.5
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 +4 -4
- package/build/types.d.ts +3 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Setup your profile by adding the `firefox-profile` service to your service list.
|
|
|
21
21
|
|
|
22
22
|
```js
|
|
23
23
|
// wdio.conf.js
|
|
24
|
-
|
|
24
|
+
exports.config
|
|
25
25
|
// ...
|
|
26
26
|
services: [
|
|
27
27
|
['firefox-profile', {
|
|
@@ -76,7 +76,7 @@ Example:
|
|
|
76
76
|
- Automatic Proxy:
|
|
77
77
|
```js
|
|
78
78
|
// wdio.conf.js
|
|
79
|
-
|
|
79
|
+
exports.config
|
|
80
80
|
// ...
|
|
81
81
|
services: [
|
|
82
82
|
['firefox-profile', {
|
|
@@ -93,7 +93,7 @@ Example:
|
|
|
93
93
|
- Manual HTTP Proxy:
|
|
94
94
|
```js
|
|
95
95
|
// wdio.conf.js
|
|
96
|
-
|
|
96
|
+
exports.config
|
|
97
97
|
// ...
|
|
98
98
|
services: [
|
|
99
99
|
['firefox-profile', {
|
|
@@ -110,7 +110,7 @@ Example:
|
|
|
110
110
|
- Manual HTTP and HTTPS Proxy:
|
|
111
111
|
```js
|
|
112
112
|
// wdio.conf.js
|
|
113
|
-
|
|
113
|
+
exports.config
|
|
114
114
|
// ...
|
|
115
115
|
services: [
|
|
116
116
|
['firefox-profile', {
|
package/build/types.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export interface FirefoxProfileOptions extends FirefoxSettings {
|
|
|
45
45
|
* @example
|
|
46
46
|
* ```js
|
|
47
47
|
* // Automatic Proxy
|
|
48
|
-
*
|
|
48
|
+
* exports.config
|
|
49
49
|
* // ...
|
|
50
50
|
* services: [
|
|
51
51
|
* ['firefox-profile', {
|
|
@@ -60,7 +60,7 @@ export interface FirefoxProfileOptions extends FirefoxSettings {
|
|
|
60
60
|
* ```
|
|
61
61
|
* ```js
|
|
62
62
|
* // Manual HTTP Proxy
|
|
63
|
-
*
|
|
63
|
+
* exports.config
|
|
64
64
|
* // ...
|
|
65
65
|
* services: [
|
|
66
66
|
* ['firefox-profile', {
|
|
@@ -75,7 +75,7 @@ export interface FirefoxProfileOptions extends FirefoxSettings {
|
|
|
75
75
|
* ```
|
|
76
76
|
* ```js
|
|
77
77
|
* // Manual HTTP and HTTPS Proxy
|
|
78
|
-
*
|
|
78
|
+
* exports.config
|
|
79
79
|
* // ...
|
|
80
80
|
* services: [
|
|
81
81
|
* ['firefox-profile', {
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/firefox-profile-service",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.19.5",
|
|
4
4
|
"description": "WebdriverIO service that lets you define your Firefox profile in your wdio.conf.js",
|
|
5
|
-
"author": "Christian Bromann <
|
|
5
|
+
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-firefox-profile-service",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "./build/index",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"url": "https://github.com/webdriverio/webdriverio/issues"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@wdio/types": "7.
|
|
32
|
+
"@wdio/types": "7.19.5",
|
|
33
33
|
"firefox-profile": "^4.0.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
41
|
"types": "./build/index.d.ts",
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "75af233cbaecf1aaf6a6168dfb4225f56dd21daf"
|
|
43
43
|
}
|