Sha256: 832135d8e8eb7d10e48072ce639bb2335786b17ad99c8239f92290b082eec709

Contents?: true

Size: 1.92 KB

Versions: 19

Compression:

Stored size: 1.92 KB

Contents

require 'watirspec_helper'

describe 'Ul' do
  before :each do
    browser.goto(WatirSpec.url_for('non_control_elements.html'))
  end

  # Exists method
  describe '#exist?' do
    it "returns true if the 'ul' exists" do
      expect(browser.ul(id: 'navbar')).to exist
      expect(browser.ul(id: /navbar/)).to exist
      expect(browser.ul(index: 0)).to exist
      expect(browser.ul(xpath: "//ul[@id='navbar']")).to exist
    end

    it 'returns the first ul if given no args' do
      expect(browser.ul).to exist
    end

    it "returns false if the 'ul' doesn't exist" do
      expect(browser.ul(id: 'no_such_id')).to_not exist
      expect(browser.ul(id: /no_such_id/)).to_not exist
      expect(browser.ul(text: 'no_such_text')).to_not exist
      expect(browser.ul(text: /no_such_text/)).to_not exist
      expect(browser.ul(class: 'no_such_class')).to_not exist
      expect(browser.ul(class: /no_such_class/)).to_not exist
      expect(browser.ul(index: 1337)).to_not exist
      expect(browser.ul(xpath: "//ul[@id='no_such_id']")).to_not exist
    end

    it "raises TypeError when 'what' argument is invalid" do
      expect { browser.ul(id: 3.14).exists? }.to raise_error(TypeError)
    end
  end

  # Attribute methods
  describe '#id' do
    it 'returns the id attribute' do
      expect(browser.ul(class: 'navigation').id).to eq 'navbar'
    end

    it "returns an empty string if the element exists and the attribute doesn't" do
      expect(browser.ul(index: 1).id).to eq ''
    end

    it "raises UnknownObjectException if the ul doesn't exist" do
      expect { browser.ul(id: 'no_such_id').id }.to raise_unknown_object_exception
      expect { browser.ul(index: 1337).id }.to raise_unknown_object_exception
    end
  end

  describe '#respond_to?' do
    it 'returns true for all attribute methods' do
      expect(browser.ul(index: 0)).to respond_to(:class_name)
      expect(browser.ul(index: 0)).to respond_to(:id)
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
watir-7.1.0 spec/watirspec/elements/ul_spec.rb
watir-7.0.0 spec/watirspec/elements/ul_spec.rb
watir-7.0.0.beta5 spec/watirspec/elements/ul_spec.rb
watir-7.0.0.beta4 spec/watirspec/elements/ul_spec.rb
watir-7.0.0.beta3 spec/watirspec/elements/ul_spec.rb
watir-7.0.0.beta2 spec/watirspec/elements/ul_spec.rb
watir-7.0.0.beta1 spec/watirspec/elements/ul_spec.rb
watir-6.19.1 spec/watirspec/elements/ul_spec.rb
watir-6.19.0 spec/watirspec/elements/ul_spec.rb
watir-6.18.0 spec/watirspec/elements/ul_spec.rb
watir-6.17.0 spec/watirspec/elements/ul_spec.rb
watir-6.16.5 spec/watirspec/elements/ul_spec.rb
watir-6.16.4 spec/watirspec/elements/ul_spec.rb
watir-6.16.3 spec/watirspec/elements/ul_spec.rb
watir-6.16.2 spec/watirspec/elements/ul_spec.rb
watir-6.16.1 spec/watirspec/elements/ul_spec.rb
watir-6.16.0 spec/watirspec/elements/ul_spec.rb
watir-6.15.1 spec/watirspec/elements/ul_spec.rb
watir-6.15.0 spec/watirspec/elements/ul_spec.rb