Sha256: 4d616b8cc0b0db3766dd7bf4b2c28b24bf0a526cef07d983be76cd077b5db4c1

Contents?: true

Size: 861 Bytes

Versions: 1

Compression:

Stored size: 861 Bytes

Contents

# frozen_string_literal: true

require 'watirspec_helper'

describe 'Images' do
  before :each do
    browser.goto(WatirSpec.url_for('images.html'))
  end

  describe 'with selectors' do
    it 'returns the matching elements' do
      expect(browser.images(alt: 'circle').to_a).to eq [browser.image(alt: 'circle')]
    end
  end

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

  describe '#[]' do
    it 'returns the image at the given index' do
      expect(browser.images[5].id).to eq 'square'
    end
  end

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

      browser.images.each_with_index do |c, index|
        expect(c.id).to eq browser.image(index: index).id
        count += 1
      end

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
watir-7.2.0 spec/watirspec/elements/images_spec.rb