puppeteer-dart
puppeteer-dart copied to clipboard
How to change timeout When clicking the element with the middle mouse button
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.