Kir Belevich
Kir Belevich
https://github.com/deepsweet/baggage-loader/issues/11
that's how pages looks like when you print it to console, actually it's an array of pages that should work as intended, just like in Puppeteer.
sounds like an interesting bug, I'll take a look early next week. thanks!
The thing is that Foxr is made on top of Firefox own [Marionette](https://firefox-source-docs.mozilla.org/testing/marionette/index.html) remote protocol, as it says in readme, and it's not the same as `WebDriver` and not compatible...
If you'd like to help – the main source of inspiration [is here](https://searchfox.org/mozilla-central/source/testing/marionette/client/marionette_driver/marionette.py) :) Open issues reflect what is possible to implement through the protocol.
>code works with puppeteer 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...
>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...
>When you install puppeteer-firefox, it downloads a custom-built Firefox (Firefox/63.0.4) that is guaranteed to work with the API. Sounds like their implementation is going to be more feature rich because...
https://developer.mozilla.org/en-US/docs/Tools/Remote_Debugging/Debugging_Firefox_Desktop
It's [possible](https://github.com/saucelabs/foxdriver/blob/master/lib/domains/emulation.js) to change (*per tab!*) the following things using [Remote Debugging Protocol (RDP)](https://searchfox.org/mozilla-central/source/devtools/docs/backend/protocol.md): * network throttling * user agent * DPPX * touch events override Unfortunately it seems to...