I set timeout time in Pyppeteer to 60 sec, but it doesn't work for all pages. Here is my code:
options = {'timeout': 60 * 1000}
response = await self.page.goto(url, options)
I try to load this URL with a timeout: http://www.google.com:81
But after 60 sec it doesn't raise timeout exception. After 4 minutes it raises net::ERR_TIMED_OUT
How can I set timeout time for pages as I have?
the options in pyppeteer need to be set as keyword arguments.