webdriverio 8.2.2 → 8.2.4

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.
@@ -1 +1 @@
1
- {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAqC,MAAM,aAAa,CAAA;AAqC7E,eAAO,MAAM,WAAW,wCAAwC,CAAA;AAEhE,eAAO,MAAM,aAAa,EAAE,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,GAAG,OAAO,CAAC,UAAU,CA8RtF,CAAA;AAED,eAAO,MAAM,uBAAuB,UAA0E,CAAA;AAE9G,eAAO,MAAM,uBAAuB;;;;;CAKnC,CAAA;AAED,eAAO,MAAM,mBAAmB,2BAA2B,CAAA;AAC3D,eAAO,MAAM,aAAa,QAAQ,CAAA;AAClC,eAAO,MAAM,aAAa,UAAU,CAAA;AAEpC,eAAO,MAAM,YAAY,UAKxB,CAAA;AAED;;GAEG;AACH,eAAO,MAAM,GAAG;IACZ;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0DG,CAAA"}
1
+ {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAqC,MAAM,aAAa,CAAA;AAoC7E,eAAO,MAAM,WAAW,wCAAwC,CAAA;AAEhE,eAAO,MAAM,aAAa,EAAE,OAAO,CAAC,UAAU,CAAC,OAAO,CAAC,WAAW,GAAG,OAAO,CAAC,UAAU,CA8RtF,CAAA;AAED,eAAO,MAAM,uBAAuB,UAA0E,CAAA;AAE9G,eAAO,MAAM,uBAAuB;;;;;CAKnC,CAAA;AAED,eAAO,MAAM,mBAAmB,2BAA2B,CAAA;AAC3D,eAAO,MAAM,aAAa,QAAQ,CAAA;AAClC,eAAO,MAAM,aAAa,UAAU,CAAA;AAEpC,eAAO,MAAM,YAAY,UAKxB,CAAA;AAED;;GAEG;AACH,eAAO,MAAM,GAAG;IACZ;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0DG,CAAA"}
@@ -6,7 +6,6 @@ const __dirname = dirname(fileURLToPath(import.meta.url));
6
6
  const require = createRequire(import.meta.url);
7
7
  var SupportedAutomationProtocols;
8
8
  (function (SupportedAutomationProtocols) {
9
- SupportedAutomationProtocols["browser"] = "browser-runner/build/browser/driver.js";
10
9
  SupportedAutomationProtocols["webdriver"] = "webdriver";
11
10
  SupportedAutomationProtocols["devtools"] = "devtools";
12
11
  SupportedAutomationProtocols["stub"] = "./protocol-stub.js";
@@ -46,7 +45,7 @@ export const WDIO_DEFAULTS = {
46
45
  /**
47
46
  * path when proxy is used for browser testing
48
47
  */
49
- if (param.endsWith(SupportedAutomationProtocols.browser)) {
48
+ if (param.endsWith('driver.js')) {
50
49
  return;
51
50
  }
52
51
  if (!Object.values(SupportedAutomationProtocols).includes(param.toLowerCase())) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "webdriverio",
3
3
  "description": "Next-gen browser and mobile automation test framework for Node.js",
4
- "version": "8.2.2",
4
+ "version": "8.2.4",
5
5
  "homepage": "https://webdriver.io",
6
6
  "author": "Christian Bromann <mail@bromann.dev>",
7
7
  "license": "MIT",
@@ -67,17 +67,17 @@
67
67
  },
68
68
  "dependencies": {
69
69
  "@types/node": "^18.0.0",
70
- "@wdio/config": "8.2.2",
70
+ "@wdio/config": "8.2.3",
71
71
  "@wdio/logger": "8.1.0",
72
72
  "@wdio/protocols": "8.2.0",
73
73
  "@wdio/repl": "8.1.0",
74
74
  "@wdio/types": "8.1.2",
75
- "@wdio/utils": "8.2.2",
75
+ "@wdio/utils": "8.2.3",
76
76
  "archiver": "^5.0.0",
77
77
  "aria-query": "^5.0.0",
78
78
  "css-shorthand-properties": "^1.1.1",
79
79
  "css-value": "^0.0.1",
80
- "devtools": "8.2.2",
80
+ "devtools": "8.2.3",
81
81
  "devtools-protocol": "^0.0.1094867",
82
82
  "grapheme-splitter": "^1.0.2",
83
83
  "import-meta-resolve": "^2.1.0",
@@ -90,7 +90,7 @@
90
90
  "resq": "^1.9.1",
91
91
  "rgb2hex": "0.2.5",
92
92
  "serialize-error": "^8.0.0",
93
- "webdriver": "8.2.2"
93
+ "webdriver": "8.2.3"
94
94
  },
95
- "gitHead": "dff7f0d540cd0862d393ecceabed44d42794e2be"
95
+ "gitHead": "eba541a77dbc42173717e1c106a7c4d3ccb198f5"
96
96
  }