Skip to content

Commit 0f292bb

Browse files
authored
Merge branch '3.x' into fix-grabTextFrom-empty-text
2 parents 7662bb6 + 8585141 commit 0f292bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/helper/Playwright.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2055,7 +2055,7 @@ class Playwright extends Helper {
20552055
const els = await this._locate(locator);
20562056
const texts = [];
20572057
for (const el of els) {
2058-
texts.push(await await el.innerText());
2058+
texts.push(await el.innerText());
20592059
}
20602060
this.debug(`Matched ${els.length} elements`);
20612061
return texts;

0 commit comments

Comments
 (0)