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