We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 564266a commit 5bdf3c8Copy full SHA for 5bdf3c8
README.MD
@@ -290,6 +290,18 @@ helpers.clearStorages();
290
291
// clear both cookies and storages
292
helpers.clearCookiesAndStorages('body header');
293
+
294
+// waits until an element to exist and returns it
295
+helpers.waitForCssXpathElement('#login-button', 5000);
296
297
+// scroll until element is visible
298
+helpers.scrollToElement(webElement);
299
300
+// select a value inside a dropdown list by its text
301
+helpers.selectByVisibleText('#country', 'Brazil');
302
303
+// waits and returns an array of all windows opened
304
+helpers.waitForNewWindows();
305
```
306
307
### Visual Comparison
0 commit comments