Sha256: 50d8593d08aed08a6e5e21a09825746bd3c50492d055fed782ef056387b8d33d
Contents?: true
Size: 375 Bytes
Versions: 17
Compression:
Stored size: 375 Bytes
Contents
Capybara::SpecHelper.spec '#go_back', :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!') end end
Version data entries
17 entries across 17 versions & 4 rubygems