Skip to content
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

Add tests for exact: true/false option in have_button and have_no_button #2786

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions lib/capybara/spec/session/has_button_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
expect(@session).to have_button('med', disabled: :all)
end

it 'should be true for exact match if exact: true' do
expect(@session).to have_button('med', exact: true)
end

it 'can verify button type' do
expect(@session).to have_button('awe123', type: 'submit')
expect(@session).not_to have_button('awe123', type: 'reset')
Expand Down Expand Up @@ -111,6 +115,10 @@
expect(@session).to have_no_button('Disabled button', disabled: false)
end

it 'should be true for no exact match if exact: true' do
expect(@session).to have_no_button('button', exact: true)
end

it 'should be true for role=button when enable_aria_role: false' do
expect(@session).to have_no_button('ARIA button', enable_aria_role: false)
end
Expand Down