Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. scenario 'currently used transport mode cannot be re-selected' do
  2.  
  3. expect(page).to have_css("h2.summary")
  4. expect(find('h2.summary').text).to eq("Single event")
  5. expect(page).to have_content("Change journey")
  6. page.click_link("Change journey")
  7. expect(find('#travel-times-preview').visible?).to be_truthy # FAILS here because of previous step not working
  8.  
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement