You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check, whether the checked value of the checkbox has changed
What is expected?
The checked value of the checkbox should be true.
What is actually happening?
The checked value of the checkbox remains unchanged.
I think the problem here is, that first
checkboxWrapper.element.checked=true
changes the checked value of the checkbox, then
checkboxWrapper.trigger('click')
changes it back.
Occured in chrome 70, but from the logic of the setChecked method, i assume majority of modern browsers are affected. In PhantomJS this works as expected.
The text was updated successfully, but these errors were encountered:
Version
1.0.0-beta.27
Reproduction link
https://codesandbox.io/s/00x1v7krl
Steps to reproduce
setChecked(true)
on the wrapperchecked
value of the checkbox has changedWhat is expected?
The
checked
value of the checkbox should be true.What is actually happening?
The
checked
value of the checkbox remains unchanged.I think the problem here is, that first
changes the
checked
value of the checkbox, thenchanges it back.
Occured in chrome 70, but from the logic of the setChecked method, i assume majority of modern browsers are affected. In PhantomJS this works as expected.
The text was updated successfully, but these errors were encountered: