* Grab the text within the popup. If no popup is visible then it will return null * * ```js * await I.grabPopupText(); * ``` * @return {Promise }
()
| 619 | * @return {Promise<string | null>} |
| 620 | */ |
| 621 | async grabPopupText() { |
| 622 | if (popupStore.popup) { |
| 623 | return popupStore.popup.message() |
| 624 | } |
| 625 | return null |
| 626 | } |
| 627 | |
| 628 | async _startBrowser() { |
| 629 | this.debugSection('Puppeteer', `Starting browser. Puppeteer available: ${!!puppeteer}, launch available: ${!!puppeteer?.launch}`) |
no outgoing calls
no test coverage detected