puppeteer-sharp
puppeteer-sharp copied to clipboard
WaitForSelectorAsync Invalid timeout setting
my code:
var emailOrPhoneInput = await page.WaitForSelectorAsync("input[name='emailOrPhone']", new WaitForSelectorOptions { Timeout = 90000, Visible = true, });
error:
Waiting for selector input[name='emailOrPhone'] failed: Timeout of 10000 ms exceeded
I set the timeout to 90 seconds, but in fact, it times out in 10 seconds. No matter what the timeout is set to, it will always time out in 10 seconds.