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
In Capybara, i could do things like:
expect(page).not_to have_selector('#any-id')
How is this done in playwright-DSL?
Many Thanks, Chris
The text was updated successfully, but these errors were encountered:
@chmich Not sure if you still need this, but here is how we solved this particular case:
it "does not render something" do expect(page.locator('[data-cy="some-thing"]')).not_to be_attached end
Sorry, something went wrong.
No branches or pull requests
Usecase / What to achieve
In Capybara, i could do things like:
Question
How is this done in playwright-DSL?
Many Thanks,
Chris
The text was updated successfully, but these errors were encountered: