From 4e85d756e67485f82d05754f42c56df2857265af Mon Sep 17 00:00:00 2001 From: rebuilt Date: Mon, 26 Jun 2023 14:20:29 -0700 Subject: [PATCH] fix: Flaky test might be related to not waiting for go button to appear. Add line to wait for go button --- spec/system/journey_spec.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/spec/system/journey_spec.rb b/spec/system/journey_spec.rb index b6915d5e..03546722 100644 --- a/spec/system/journey_spec.rb +++ b/spec/system/journey_spec.rb @@ -171,6 +171,7 @@ def go_to_school_overview_from_welcome_page(district, school) select school.name, from: 'school-dropdown' expect(page).to have_select('school', selected: 'Winchester High School') + expect(page).to have_xpath('//a[@class="mx-4 btn btn-secondary"]') click_on 'Go' end