Fix transient error clicking dropdown items in compare_spec.rb

This commit is contained in:
Luke "Jared" Bennett 2017-05-21 12:53:35 +00:00
parent 7c7fe22c27
commit 4497ca87c4
No known key found for this signature in database
GPG Key ID: 402ED51FB5D306C2
1 changed files with 3 additions and 1 deletions

View File

@ -52,8 +52,10 @@ describe "Compare", js: true do
def select_using_dropdown(dropdown_type, selection)
dropdown = find(".js-compare-#{dropdown_type}-dropdown")
dropdown.find(".compare-dropdown-toggle").click
dropdown.find('.dropdown-menu')
dropdown.fill_in("Filter by Git revision", with: selection)
wait_for_requests
dropdown.find_all("a[data-ref=\"#{selection}\"]", visible: true).last.click
dropdown.find("a[data-ref=\"#{selection}\"]", match: :first)
dropdown.all("a[data-ref=\"#{selection}\"]").last.click
end
end