puppeteer-dart icon indicating copy to clipboard operation
puppeteer-dart copied to clipboard

How to change timeout When clicking the element with the middle mouse button

Open kokocooler2020 opened this issue 4 years ago • 0 comments

When clicking the element with the middle mouse button,a new page/tab will be open, then, the timeout of the new page is 30second.

i try to change timeout use this: await page.mouse.click(Point(x,y), button: MouseButton.middle); await page.waitForNavigation(timeout: const Duration(seconds: 40));

and this: Future.wait([ page.waitForNavigation(timeout: const Duration(seconds: 40)), page.mouse.click(Point(x,y), button: MouseButton.middle), ]);

but it not work, so, any body can help? thank you.

kokocooler2020 avatar Dec 31 '20 09:12 kokocooler2020