Sha256: a1ae7be1903e1189825f7dde4e00e565ffba899e30c3b6174a754d3b2444b7ce

Contents?: true

Size: 1007 Bytes

Versions: 20

Compression:

Stored size: 1007 Bytes

Contents

require 'watirspec_helper'

describe 'Hiddens' do
  before :each do
    browser.goto(WatirSpec.url_for('forms_with_input_elements.html'))
  end

  describe 'with selectors' do
    it 'returns the matching elements' do
      expect(browser.hiddens(value: 'dolls').to_a).to eq [browser.hidden(value: 'dolls')]
    end
  end

  describe '#length' do
    it 'returns the number of hiddens' do
      expect(browser.hiddens.length).to eq 2
    end
  end

  describe '#[]' do
    it 'returns the Hidden at the given index' do
      expect(browser.hiddens[1].id).to eq 'new_user_interests_dolls'
    end
  end

  describe '#each' do
    it 'iterates through hiddens correctly' do
      count = 0

      browser.hiddens.each_with_index do |h, index|
        expect(h.name).to eq browser.hidden(index: index).name
        expect(h.id).to eq browser.hidden(index: index).id
        expect(h.value).to eq browser.hidden(index: index).value

        count += 1
      end

      expect(count).to be > 0
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

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