webdriverio 9.4.4 → 9.4.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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// src/scripts/isElementStable.ts
|
|
2
2
|
function isElementStable(elem, done) {
|
|
3
3
|
if (document.visibilityState === "hidden") {
|
|
4
|
-
throw Error("You are
|
|
4
|
+
throw Error("You are checking for animations on an inactive tab, animations do not run for inactive tabs");
|
|
5
5
|
}
|
|
6
6
|
try {
|
|
7
7
|
const previousPosition = elem.getBoundingClientRect();
|
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": "9.4.
|
|
4
|
+
"version": "9.4.5",
|
|
5
5
|
"homepage": "https://webdriver.io",
|
|
6
6
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"optional": true
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "cef3ee07f23f9029e3a73cfee2ab2326b5d44b05"
|
|
114
114
|
}
|