-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Check on cy.check() for hidden input field type=radio when {force: true} #1376
Comments
I have the same issue "cypress": "^3.1.0" |
I had the same problem and I investigated a bit. I am no expert in coffee script but, as far as I can tell, it looks like The problem is that when I hope it helps solving the issue. |
Released in |
Is this a Feature or Bug?
Bug[ish]>?
Current behavior:
The error message describes and advice you to use
{force: true}
but this doesn't seem to work the error keeps showing.Not sure if i'm doing something wrong here?
Desired behavior:
Skipping the error? or updating the information with correct information?
Anyway this solved my issue and not doing the check anymore.
cy.get('input[id="buying-type-auction"]:checked').not('[disabled]')
cy.get('input[id="buying-type-reserved"]:not(:checked)').not('[disabled]')
The text was updated successfully, but these errors were encountered: