Skip to content

Instantly share code, notes, and snippets.

@kjlape
Created August 7, 2017 16:27
Show Gist options
  • Select an option

  • Save kjlape/c5dbcdd8aebd5017d15a4b55f55d513e to your computer and use it in GitHub Desktop.

Select an option

Save kjlape/c5dbcdd8aebd5017d15a4b55f55d513e to your computer and use it in GitHub Desktop.
RSpec::Matchers.define :have_field_value do |selector, value:|
match do |page|
page.find(selector).value == value
end
failure_message do
<<-MESSAGE
expected #{selector} to have value #{value}, but it was not.
MESSAGE
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment