1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/spec/session/go_forward_spec.rb

15 lines
484 B
Ruby
Raw Normal View History

2016-03-07 19:52:19 -05:00
# frozen_string_literal: true
2018-02-28 19:11:41 -05:00
2016-10-04 14:10:29 -04:00
Capybara::SpecHelper.spec '#go_forward', requires: [:js] do
it "should fetch a response from the driver from the previous page" do
@session.visit('/')
expect(@session).to have_content('Hello world!')
@session.visit('/foo')
expect(@session).to have_content('Another World')
@session.go_back
expect(@session).to have_content('Hello world!')
@session.go_forward
expect(@session).to have_content('Another World')
end
end