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 85a2bc8 commit 52bd4d5Copy full SHA for 52bd4d5
lib/helper/WebDriver.js
@@ -1462,7 +1462,7 @@ async seeElement(locator) {
1462
const elements = await this._locate(locator, true);
1463
assertElementExists(elements, locator);
1464
1465
- const visibility = await forEachAsync(elements, async el => el.isDisplayed());
+ const visibility = await forEach(elements, async el => el.isDisplayed());
1466
1467
try {
1468
return truth(`elements of ${new Locator(locator)}`, 'to be seen').assert(visibility);
0 commit comments