Commit 4497ca87 authored by Luke "Jared" Bennett's avatar Luke "Jared" Bennett

Fix transient error clicking dropdown items in compare_spec.rb

parent 7c7fe22c
...@@ -52,8 +52,10 @@ describe "Compare", js: true do ...@@ -52,8 +52,10 @@ describe "Compare", js: true do
def select_using_dropdown(dropdown_type, selection) def select_using_dropdown(dropdown_type, selection)
dropdown = find(".js-compare-#{dropdown_type}-dropdown") dropdown = find(".js-compare-#{dropdown_type}-dropdown")
dropdown.find(".compare-dropdown-toggle").click dropdown.find(".compare-dropdown-toggle").click
dropdown.find('.dropdown-menu')
dropdown.fill_in("Filter by Git revision", with: selection) dropdown.fill_in("Filter by Git revision", with: selection)
wait_for_requests 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
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment