You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 8, 2023. It is now read-only.
Expected behavior : google, youtube and facebook open in three different tabs (code works with puppeteer) Observer behavior: I get two empty tabs, and one tab with facebook. Context : firefox 67.0.2 on ubuntu, foxr 0.9.0
I also noticed that firefox closes on its own after a few seconds of inactivity. Is that an effect of -marionette ?
The text was updated successfully, but these errors were encountered:
unfortunately that's not how Marionette works – there is no way to send command to particular page by internal ID or something, it affects only a "current" page.
you might want to give puppeteer-firefox a try (keep in mind that it downloads a custom-built Firefox)
firefox closes on its own after a few seconds of inactivity
that shouldn't really happen, at least not in a few seconds. any simple way to reproduce it?
unfortunately that's not how Marionette works – there is no way to send command to particular page by internal ID or something, it affects only a "current" page.
Too bad, I will have to use puppeteer-firefox. I wanted to avoid it because like you said, it's a custom-built Firefox
that shouldn't really happen, at least not in a few seconds. any simple way to reproduce it?
With this code, Firefox starts, then closes after about 10 seconds on my PC.
I've figured it out – actually it's "by design". Whenever Node.js has nothing more to do it quits, and by default Foxr is trying to cleanup and stop Firefox processes it has launched.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I've been playing around with foxr to find out if I can use it as a substitute of puppeteer for firefox-based browsers.
I tried this code :
Expected behavior : google, youtube and facebook open in three different tabs (code works with puppeteer)
Observer behavior: I get two empty tabs, and one tab with facebook.
Context : firefox 67.0.2 on ubuntu, foxr 0.9.0
I also noticed that firefox closes on its own after a few seconds of inactivity. Is that an effect of
-marionette
?The text was updated successfully, but these errors were encountered: