* {{> grabHTMLFromAll }} *
(locator)
| 1453 | * |
| 1454 | */ |
| 1455 | async grabHTMLFromAll(locator) { |
| 1456 | const elems = await this._locate(locator, true) |
| 1457 | const html = await forEachAsync(elems, elem => elem.getHTML(false)) |
| 1458 | this.debugSection('GrabHTML', String(html)) |
| 1459 | return html |
| 1460 | } |
| 1461 | |
| 1462 | /** |
| 1463 | * {{> grabHTMLFrom }} |
no test coverage detected