We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While trying to extract critical css for few websites we are getting navigation timed out error.
Sample Site: https://www.vision-institute.com/ cssString: ''body { color: red }''
tried to modify the timeout time for upto 2 minutes but it still fails.
On debugging we found out that It was getting hanged on page.goto(site_url)
site_url
So We checked puppeteer library and there such issues already exists.
For now it works if we add the pageGotoOptions : reference https://github.com/puppeteer/puppeteer/blob/v14.0.0/docs/api.md#pagegotourl-options
The text was updated successfully, but these errors were encountered:
Fix pocketjoso#344 updating the example
3a7029a
5f178b3
Merge pull request #345 from bv-sumit/sumit_page_goto_options
9982d51
Fix #344 adding page goto options for puppeteer
No branches or pull requests
While trying to extract critical css for few websites we are getting navigation timed out error.
Sample Site: https://www.vision-institute.com/
cssString: ''body { color: red }''
tried to modify the timeout time for upto 2 minutes but it still fails.
On debugging we found out that It was getting hanged on page.goto(
site_url
)So We checked puppeteer library and there such issues already exists.
For now it works if we add the pageGotoOptions : reference https://github.com/puppeteer/puppeteer/blob/v14.0.0/docs/api.md#pagegotourl-options
The text was updated successfully, but these errors were encountered: