testdriverai 7.4.1 → 7.4.2
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 +1 -1
- package/sdk.js +1 -1
package/package.json
CHANGED
package/sdk.js
CHANGED
|
@@ -668,7 +668,7 @@ class Element {
|
|
|
668
668
|
|
|
669
669
|
// Create options without timeout to avoid infinite recursion
|
|
670
670
|
const findOptions = typeof options === "object" ? { ...options } : {};
|
|
671
|
-
|
|
671
|
+
findOptions.timeout = 0;
|
|
672
672
|
|
|
673
673
|
let attempts = 0;
|
|
674
674
|
while (Date.now() - startTime < timeout) {
|