@applitools/spec-driver-selenium 1.5.40 → 1.5.42
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/package.json +5 -5
- package/types/index.d.ts +1 -1
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.42",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"selenium",
|
|
6
6
|
"selenium-webdriver",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
],
|
|
43
43
|
"scripts": {
|
|
44
44
|
"lint": "node ../../node_modules/.bin/eslint '**/*.ts'",
|
|
45
|
-
"build": "node ../../node_modules/.bin/
|
|
45
|
+
"build": "node ../../node_modules/.bin/tspc --project ./tsconfig.build.json",
|
|
46
46
|
"test": "node ../../node_modules/.bin/mocha './test/**/*.spec.ts' -r @applitools/test-utils/mocha-hooks/docker --exit",
|
|
47
47
|
"test:sanity": "yarn test",
|
|
48
48
|
"setup": "yarn docker:setup",
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
"postversion": "bongo postversion"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@applitools/driver": "1.11.
|
|
61
|
-
"@applitools/utils": "1.3.
|
|
60
|
+
"@applitools/driver": "1.11.47",
|
|
61
|
+
"@applitools/utils": "1.3.35"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@applitools/api-extractor": "^1.2.
|
|
64
|
+
"@applitools/api-extractor": "^1.2.19",
|
|
65
65
|
"@applitools/bongo": "3.0.3",
|
|
66
66
|
"@applitools/test-utils": "1.5.16",
|
|
67
67
|
"@types/node": "^12.20.55",
|
package/types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export function isElement(element: any): element is Element;
|
|
|
5
5
|
export function isSelector(selector: any): selector is Selector;
|
|
6
6
|
export function transformDriver(driver: Driver): Driver;
|
|
7
7
|
export function transformSelector(selector: import('@applitools/driver').CommonSelector<Selector>): Selector;
|
|
8
|
-
export function untransformSelector(selector: Selector): null | import('@applitools/driver').CommonSelector
|
|
8
|
+
export function untransformSelector(selector: Selector): null | import('@applitools/driver').CommonSelector;
|
|
9
9
|
export function isStaleElementError(error: any): boolean;
|
|
10
10
|
export function isEqualElements(_driver: Driver, element1: Element, element2: Element): Promise<boolean>;
|
|
11
11
|
export function executeScript(driver: Driver, script: string | ((arg: any) => any), arg: any): Promise<any>;
|