Sha256: 71398fc4659f4cac8d3a6f067f4c353373304710ebb2dc75d3c720e9e53bd51a
Contents?: true
Size: 484 Bytes
Versions: 13
Compression:
Stored size: 484 Bytes
Contents
# frozen_string_literal: true 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
Version data entries
13 entries across 13 versions & 2 rubygems