From f56df91d1b22a904c9ee906763b648ae3bf1405b Mon Sep 17 00:00:00 2001 From: marijanabevanda Date: Mon, 25 Sep 2023 14:51:40 +0200 Subject: [PATCH] fix: lint (actions) --- src/helpers/actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/actions.ts b/src/helpers/actions.ts index 7e8f6685..15aa1eb6 100644 --- a/src/helpers/actions.ts +++ b/src/helpers/actions.ts @@ -198,7 +198,7 @@ export const evaluateElementClick = async ( selector: string ): Promise => { /* For some reason popup deletes close button and then create new one (react stuff) - * hacky solution can be found here => https://github.com/puppeteer/puppeteer/issues/3496 */ + * hacky solution can be found here => https://github.com/puppeteer/puppeteer/issues/3496 */ await new Promise((resolve) => setTimeout(resolve, 1000)); await page.$eval(selector, (node) => node.click()); };