Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
fix: lint (actions)
Browse files Browse the repository at this point in the history
  • Loading branch information
marijanabevanda committed Sep 25, 2023
1 parent 4e2795e commit f56df91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export const evaluateElementClick = async (
selector: string
): Promise<void> => {
/* 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());
};

0 comments on commit f56df91

Please sign in to comment.