-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fill credit card input with force in checkout spec
This fixes the flaky spec described into #2910. Capybara fill_in sometime does not fill the input with the whole string. This commit will fill it with js bypassing the default behavior.
- Loading branch information
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# frozen_string_literal: true | ||
|
||
module FillInWithForce | ||
def fill_in_with_force(locator, with:) | ||
field_id = find_field(locator)[:id] | ||
page.execute_script "document.getElementById('#{field_id}').value = '#{with}';" | ||
end | ||
end | ||
|
||
RSpec.configure do |config| | ||
config.include FillInWithForce, type: :feature | ||
end |