Chris Breiding
Chris Breiding
Could you try using the [official github action](https://github.com/marketplace/actions/cypress-io) and see if that yields a better result? If not, maybe try running the tests in Chrome (instead of the default, Electron)?
Thanks for trying that out. Tests should definitely be passing in both browsers. It's useful to know that it might be isolated to an issue with Electron. I'm going to...
I (re)confirmed this fails in 12.3.0 with the following: ```js it('logs in with spotify', () => { cy.origin('accounts.spotify.com', () => { cy.visit('https://accounts.spotify.com/en/login') cy.get('input#login-username').click().type(Cypress.env('spotify-username')) cy.get('input#login-password').click().type(Cypress.env('spotify-password')) cy.get('#login-button').click() }) }) ``` I'll route...
Thanks for reporting this bug and for the reproduction. I was able to verify the issue occurring with the repo you provided. I'll route this to my team for further...
Thanks for reporting this issue and providing a reproduction. It looks like this is an issue if the key is collides with any method or property that's a part of...
I was able to find a workaround for this issue by reading a fixture and stringifying it into an alias: ```js cy.origin('https://www.w3schools.com', () => { cy.visit('/howto/howto_html_file_upload_button.asp'); cy.fixture('example.json').then(JSON.stringify).as('myFixture'); //
@danut-dumitru Can you provide a reproducible example of the issue you're encountering? I'm afraid just the `setCookie` command won't be enough to verify the issue is happening or validate a...
@danut-dumitru I believe that's an issue with webkit not live-updating the cookies shown in the DevTools rather than an indication that the cookie is not being set. When I run...
Thanks for the reproduction. I was able to verify the issue happening. I'll route this to my team for investigation.
@danut-dumitru I took some time recently to look further into this. I know it's been awhile since there's been any activity on this issue, so thank you for your patience....