@applitools/spec-driver-selenium 1.5.48 → 1.5.50
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 +22 -0
- package/package.json +6 -3
- package/types/index.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.50](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-selenium@1.5.49...js/spec-driver-selenium@1.5.50) (2023-06-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/utils bumped from 1.4.0 to 1.5.0
|
|
9
|
+
#### Features
|
|
10
|
+
|
|
11
|
+
* handled abandoned tunnels ([#1669](https://github.com/applitools/eyes.sdk.javascript1/issues/1669)) ([e01a9f6](https://github.com/applitools/eyes.sdk.javascript1/commit/e01a9f6f7543fc5e6bd842acf6ee8de8cfb49998))
|
|
12
|
+
* @applitools/driver bumped from 1.12.3 to 1.12.4
|
|
13
|
+
|
|
14
|
+
* @applitools/logger bumped from 2.0.4 to 2.0.5
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [1.5.49](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-selenium@1.5.48...js/spec-driver-selenium@1.5.49) (2023-06-21)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Dependencies
|
|
21
|
+
|
|
22
|
+
* @applitools/driver bumped from 1.12.2 to 1.12.3
|
|
23
|
+
|
|
24
|
+
|
|
3
25
|
## [1.5.48](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-selenium-v1.5.47...js/spec-driver-selenium@1.5.48) (2023-06-13)
|
|
4
26
|
|
|
5
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/spec-driver-selenium",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.50",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"selenium",
|
|
6
6
|
"selenium-webdriver",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"up:framework": "run --top-level add-silent selenium-webdriver"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@applitools/driver": "1.12.
|
|
49
|
-
"@applitools/utils": "1.
|
|
48
|
+
"@applitools/driver": "1.12.4",
|
|
49
|
+
"@applitools/utils": "1.5.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@applitools/api-extractor": "^1.2.21",
|
|
@@ -61,5 +61,8 @@
|
|
|
61
61
|
},
|
|
62
62
|
"engines": {
|
|
63
63
|
"node": ">=12.13.0"
|
|
64
|
+
},
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public"
|
|
64
67
|
}
|
|
65
68
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export function getSystemBars(driver: Driver): Promise<{ statusBar: {
|
|
|
43
43
|
width: number;
|
|
44
44
|
}; }>;
|
|
45
45
|
export function setOrientation(driver: Driver, orientation: import('@applitools/driver').ScreenOrientation): Promise<void>;
|
|
46
|
-
export function getOrientation(driver: Driver): Promise<"
|
|
46
|
+
export function getOrientation(driver: Driver): Promise<"portrait" | "landscape">;
|
|
47
47
|
export function getElementRegion(_driver: Driver, element: Element): Promise<{
|
|
48
48
|
x: number;
|
|
49
49
|
y: number;
|
|
@@ -59,5 +59,5 @@ export function build(env: any): Promise<[import('selenium-webdriver').WebDriver
|
|
|
59
59
|
export type Driver = import('selenium-webdriver').WebDriver & { __applitoolsBrand?: undefined; };
|
|
60
60
|
export type Element = import('selenium-webdriver').WebElement & { __applitoolsBrand?: undefined; };
|
|
61
61
|
export type ShadowRoot = { 'shadow-6066-11e4-a52e-4f735466cecf': string; };
|
|
62
|
-
export type Selector = (import('selenium-webdriver').By | import('selenium-webdriver').
|
|
62
|
+
export type Selector = (import('selenium-webdriver').By | import('selenium-webdriver').ByHash | import('selenium-webdriver').RelativeBy | { using: string; value: string; } | ((webdriver: import('selenium-webdriver').WebDriver) => Promise<any>)) & { __applitoolsBrand?: undefined; };
|
|
63
63
|
export type SpecType = { driver: Driver; context: Driver; element: Element; selector: Selector; };
|