-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Particular issue with Google Mixed Content demo page #9
Comments
This actually puppeteer/puppeteer#1936. Not sure we can do something about it right now. Want to take a stab? |
Ha, same issue at the same time :-) |
It's a little above my pay grade right now 😅 |
For your information, my workaround looks like: page._frameManager.on("lifecycleevent", frame => {
if (frame._lifecycleEvents.has("networkIdle") && !frame._lifecycleEvents.has("load")) {
// Mixed content error
}
}); |
@ashfame since the issue is fixed upstream, could you try with the latest puppeteer version? |
@agis Yep, I was subscribed to issue filed on upstream. Going to check it and report back as soon as I can. |
Hi @agis For any URL that I tested with, it works fast and the process ends right after showing the summary. But for this particular URL (the only URL I tested which has mixed content warnings), it hangs up before I get the
Error: Navigation Timeout Exceeded: 30000ms exceeded
error & then the process ends:I spent the entire night on it yesterday, only to realize this is happening only with this URL. Or maybe it's happening with all of the mixed content warning pages. Got any clues?
The text was updated successfully, but these errors were encountered: