- Use custom matcher that polls #value of the element - Wait for the text field to become visible before entering text
36 lines
1 KiB
Ruby
36 lines
1 KiB
Ruby
RSpec::Matchers.define :have_path do |expected|
|
|
match do |actual|
|
|
await_condition { actual.current_path == expected }
|
|
end
|
|
|
|
failure_message_for_should do |actual|
|
|
"expected #{actual.inspect} to have path #{expected.inspect} but was #{actual.current_path.inspect}"
|
|
end
|
|
failure_message_for_should_not do |actual|
|
|
"expected #{actual.inspect} to not have path #{expected.inspect} but it had"
|
|
end
|
|
end
|
|
|
|
|
|
RSpec::Matchers.define :have_value do |expected|
|
|
match do |actual|
|
|
await_condition { actual.value && actual.value.include?(expected) }
|
|
end
|
|
|
|
failure_message_for_should do |actual|
|
|
"expected #{actual.inspect} to have value #{expected.inspect} but was #{actual.value.inspect}"
|
|
end
|
|
failure_message_for_should_not do |actual|
|
|
"expected #{actual.inspect} to not have value #{expected.inspect} but it had"
|
|
end
|
|
end
|
|
|
|
|
|
def await_condition &condition
|
|
start_time = Time.now
|
|
until condition.call
|
|
return false if (Time.now-start_time) > Capybara.default_wait_time
|
|
sleep 0.05
|
|
end
|
|
true
|
|
end
|