We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This assertion should check if the required property of e.g. an <input> element is true or not.
required
<input>
true
assert.dom('.username-field').isRequired(); assert.dom('.coupon-code').isNotRequired();
The text was updated successfully, but these errors were encountered:
Also, the attribute being present also represents true, so the assertion should take that into consideration too.
Sorry, something went wrong.
@Turbo87 guess you can mark this as complete
No branches or pull requests
This assertion should check if the
required
property of e.g. an<input>
element istrue
or not.Example:
The text was updated successfully, but these errors were encountered: