appium-chromedriver 5.4.2 → 5.4.3
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/CHANGELOG.md +7 -0
- package/build/lib/chromedriver.d.ts +7 -7
- package/build/lib/utils.d.ts +3 -3
- package/config/mapping.json +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [5.4.3](https://github.com/appium/appium-chromedriver/compare/v5.4.2...v5.4.3) (2023-06-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Miscellaneous Chores
|
|
5
|
+
|
|
6
|
+
* ChromeDriver Bump to v114.0.5735.90 ([#316](https://github.com/appium/appium-chromedriver/issues/316)) ([4c900f5](https://github.com/appium/appium-chromedriver/commit/4c900f5b9889d535cc12aed28c202da2b2120d28))
|
|
7
|
+
|
|
1
8
|
## [5.4.2](https://github.com/appium/appium-chromedriver/compare/v5.4.1...v5.4.2) (2023-05-18)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -99,13 +99,13 @@ export class Chromedriver extends events {
|
|
|
99
99
|
hasWorkingWebview(): Promise<boolean>;
|
|
100
100
|
}
|
|
101
101
|
export namespace Chromedriver {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
102
|
+
let EVENT_ERROR: string;
|
|
103
|
+
let EVENT_CHANGED: string;
|
|
104
|
+
let STATE_STOPPED: string;
|
|
105
|
+
let STATE_STARTING: string;
|
|
106
|
+
let STATE_ONLINE: string;
|
|
107
|
+
let STATE_STOPPING: string;
|
|
108
|
+
let STATE_RESTARTING: string;
|
|
109
109
|
}
|
|
110
110
|
import events from 'events';
|
|
111
111
|
import { SubProcess } from 'teen_process';
|
package/build/lib/utils.d.ts
CHANGED
|
@@ -33,9 +33,9 @@ export function getMostRecentChromedriver(mapping?: import('./types').Chromedriv
|
|
|
33
33
|
export function retrieveData(url: string, headers: import('axios').AxiosRequestConfig['headers'], opts?: Pick<import('axios').AxiosRequestConfig, 'timeout' | 'responseType'>): Promise<any>;
|
|
34
34
|
export const getOsInfo: (() => Promise<import('./types').OSInfo>) & _.MemoizedFunction;
|
|
35
35
|
export namespace OS {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
let linux: string;
|
|
37
|
+
let windows: string;
|
|
38
|
+
let mac: string;
|
|
39
39
|
}
|
|
40
40
|
export const X64: "64";
|
|
41
41
|
export const X86: "32";
|
package/config/mapping.json
CHANGED