-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
[BUG] Firefox page.goto broken for sites with service worker #2451
Comments
I could test it's working WebKit as well as Chromium. Only a Firefox issue. |
I changed the title to point out the severity of this issue 👋 |
This should be fixed in the next release. You can try using |
It fixed it indeed. Thanks a lot! 👍 |
Getting 'Potential security settings ahead' for firefox browser for page.goto(). Console prints below error : changed the below firefox settings: But it is not resolving the issue. Any suggestion how to get rid of this? |
What was the resolutions pls ? @laurentpayot |
@kishorambare sorry for the late post-vacation answer. As mentioned before, a June 2020 release fixed it. This issue didn't occur again for my app. If it's still a problem for you then I think you should create a new issue with your own environment details (mentioning this issue to link it). |
Thanks @laurentpayot . N worries at all. |
Any resolution on this too pls ? @laurentpayot @shirshGit |
@kishorambare As far as I remember I was using Playwright runner. These logs you and @shirshGit are getting look like a totally different problem. You should definitively open a new issue. |
Context:
With the
firefox
browserpage.goto
seems to never be resolved nor rejected when a service worker is running.On my project I'm using Workbox for my service worker, but you can see the bug with any service worker. The following example uses the Svelte website and its service worker. The OK message is never logged and we get a timeout error:
With the
firefox
browser I have to disable the service worker for the OK message to finally show up:Note that there is no bug with the
chromium
browser. I couldn't test whith WebKit because of #2447.The text was updated successfully, but these errors were encountered: