-
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 doesnt open #2061
Comments
Could you |
Yes, that would be
|
It claims it can't read the profile directory that was created for it... Could you check that you can create folders under |
I can create folders under |
If someone else gets the error, set a timeout of 300-400ms before getting the page and it will work |
But since this isnt a very reliable fix, the bug is still existing |
Have you tried deleting and re-downloading the firefox browser? I'm thinking it could be a corrupt browser download. Also does the bug exist in other versions, 0.16, 0.17 perhaps? |
I reinstalled it multiple times and it also happes in older versions. |
|
@SentoxAIO: Which timeout fixes it? After launch before creating the context? |
It worked for me with a delay of 300-400ms before creating the context |
Seems like its fixed. Thanks for your work! |
await page.waitForTimeout(500);
await page.goto("https://example.com/") ^ The timeout approach also worked for me. I only found this in Firefox but could be in other browsers. I think what's happening is that |
Had the same problem with // ...
await page.waitForLoadState(); // needed
await page.goBack(); // without the wait above got Error: NS_BINDING_ABORTED; same for goto() |
No description provided.
The text was updated successfully, but these errors were encountered: