Sha256: dbba4ef7a7f65394f031a1e8055af73b0bd50d8486fbcd97a0daa737e2faadf1

Contents?: true

Size: 1.2 KB

Versions: 10

Compression:

Stored size: 1.2 KB

Contents

# frozen_string_literal: true
Capybara::SpecHelper.spec '#html' do
  it "should return the unmodified page body" do
    @session.visit('/')
    expect(@session.html).to include('Hello world!')
  end

  it "should return the current state of the page", :requires => [:js] do
    @session.visit('/with_js')
    expect(@session.html).to include('I changed it')
    expect(@session.html).not_to include('This is text')
  end
end

Capybara::SpecHelper.spec '#source' do
  it "should return the unmodified page source" do
    @session.visit('/')
    expect(@session.source).to include('Hello world!')
  end

  it "should return the current state of the page", :requires => [:js] do
    @session.visit('/with_js')
    expect(@session.source).to include('I changed it')
    expect(@session.source).not_to include('This is text')
  end
end

Capybara::SpecHelper.spec '#body' do
  it "should return the unmodified page source" do
    @session.visit('/')
    expect(@session.body).to include('Hello world!')
  end

  it "should return the current state of the page", :requires => [:js] do
    @session.visit('/with_js')
    expect(@session.body).to include('I changed it')
    expect(@session.body).not_to include('This is text')
  end
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
capybara-2.9.2 lib/capybara/spec/session/html_spec.rb
tdiary-5.0.2 vendor/bundle/gems/capybara-2.8.0/lib/capybara/spec/session/html_spec.rb
capybara-2.9.1 lib/capybara/spec/session/html_spec.rb
capybara-2.9.0 lib/capybara/spec/session/html_spec.rb
capybara-2.8.1 lib/capybara/spec/session/html_spec.rb
capybara-2.8.0 lib/capybara/spec/session/html_spec.rb
tdiary-5.0.1 vendor/bundle/gems/capybara-2.7.1/lib/capybara/spec/session/html_spec.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/capybara-2.7.1/lib/capybara/spec/session/html_spec.rb
capybara-2.7.1 lib/capybara/spec/session/html_spec.rb
capybara-2.7.0 lib/capybara/spec/session/html_spec.rb