-
Notifications
You must be signed in to change notification settings - Fork 19
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
Support for Electron #46
Comments
Please let me know if there is anything I can do to help get this implemented! I just found out about this plugin, and we desperately need this during our CI runs (which are on Electron). Even though Cypress has videos and screenshots, some of our setup code fails during It would be absolutely IDEAL for us to be able to download a HAR and debug that way, but it would have to work in Electron. Also, it would be ideal if the record/save commands were able to work from within |
To make the plugin work with Electron, you just need to set the `remote-debugging-port` option when you launch Cypress as follows: ```bash $ ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=9222 cypress run --browser electron ``` Please refer to the [Electron documentation](https://www.electronjs.org/docs/latest/api/command-line-switches#--remote-debugging-portport) and the [Cypress documentation](https://docs.cypress.io/api/plugins/browser-launch-api#Modify-Electron-app-switches) for more information on how to properly configure this switch. closes #46
To make the plugin work with Electron, you just need to set the $ ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=9222 cypress run --browser electron For details please refer to #151. Support for this switch has been implemented since version 5.11.0, which can be found in the release notes on our Github repository at https://github.com/NeuraLegion/cypress-har-generator/releases/tag/v5.11.0 |
To make the plugin work with Electron, you just need to set the `remote-debugging-port` option when you launch Cypress as follows: ```bash $ ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=9222 cypress run --browser electron ``` Please refer to the [Electron documentation](https://www.electronjs.org/docs/latest/api/command-line-switches#--remote-debugging-portport) and the [Cypress documentation](https://docs.cypress.io/api/plugins/browser-launch-api#Modify-Electron-app-switches) for more information on how to properly configure this switch. closes #46
To make the plugin work with Electron, you just need to set the `remote-debugging-port` option when you launch Cypress as follows: ```bash $ ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=9222 cypress run --browser electron ``` Please refer to the [Electron documentation](https://www.electronjs.org/docs/latest/api/command-line-switches#--remote-debugging-portport) and the [Cypress documentation](https://docs.cypress.io/api/plugins/browser-launch-api#Modify-Electron-app-switches) for more information on how to properly configure this switch. closes #46
Hi,
Please add support for Electron browser.
Thx
The text was updated successfully, but these errors were encountered: