-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Cypress crashes when a site uses secure cookies #1264
Labels
type: duplicate
This issue or pull request already exists
Comments
I created a test repo containing the following spec and set describe('My First Test', function() {
it('Visits the Kitchen Sink', function() {
cy.visit('https://www.paypal.com')
})
})
|
I believe this is a duplicate of: #1321 |
brian-mann
added a commit
that referenced
this issue
Nov 1, 2018
kuceb
pushed a commit
to kuceb/cypress
that referenced
this issue
Apr 23, 2019
- fixes cypress-io#1264 - fixes cypress-io#1321 - fixes cypress-io#1799 - fixes cypress-io#2689 - fixes cypress-io#2688 - fixes cypress-io#2687 - fixes cypress-io#2686
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this a Feature or Bug?
Bug
Current behavior:
Subsequent get/sets for a cookie that has
secure: true
set by the server fail with the messageFailed to parse or set cookie named "<name>"
Desired behavior:
Requests made to/from servers utilizing secure cookies should work.
How to reproduce:
Additional Info (images, stack traces, etc)
I believe this is due to the invalid SSL cert used by Cypress. Setting
"chromeWebSecurity": false
allowed the subsequent requests to begin working. Possible solution would be to forcesecure: false
on cookie set operations.The text was updated successfully, but these errors were encountered: