Artem Derevnjuk
Artem Derevnjuk
Hi @nfelger, Thanks for the report. unfortunately, I'm not able to reproduce the same behavior using Node.js 14, 16, or 18 on macOS. Anyway, I'm going to specify a host...
Hi @digitarald, wonderful to see you here! I guess it's possible. Cypress allows installing a browser extension during `before:browser:launch` hook. However, CDP provides low-level API to manage network events which...
@digitarald As I noticed in Bugzilla only `requestWillBeSent` has been implemented. The following list details each of the necessary network events (including optional): * [requestWillBeSent](https://chromedevtools.github.io/devtools-protocol/tot/Network#event-requestWillBeSent) * [dataReceived](https://chromedevtools.github.io/devtools-protocol/tot/Network#event-dataReceived) * [responseReceived](https://chromedevtools.github.io/devtools-protocol/tot/Network#event-responseReceived) *...
Blocked by #6
@Kanapriya the plugin must capture all requests inside your browser session including those which have been sent by `cy.request` (see [examples](https://github.com/NeuraLegion/cypress-har-generator/tree/master/example)). Please provide a reproducible sample repo.
The fix has been released in v5.3.4. Please verify it as soon as you have time. Feel free to reopen the issue if the bug is still there
To make the plugin work with Electron, you just need to set the `--remote-debugging-port` switch while running Cypress tests as follows: ```bash $ ELECTRON_EXTRA_LAUNCH_ARGS=--remote-debugging-port=9222 cypress run --browser electron ``` For...
@nfelger please provide a reproducible repository if it is possible
@nfelger seems Cypress automatically sends this header via some kind of proxy, outside of the browser. That is why you are not able to see this header either in the...
@Romakita why don't implement this in the existing version of the package? I can implement this if you don't mind. wdyt?