Sha256: 08352fa4935b4418b6f66e9ea6f0191d3e118d1326db2178f1e7c50a07acdd44
Contents?: true
Size: 918 Bytes
Versions: 1
Compression:
Stored size: 918 Bytes
Contents
# frozen_string_literal: true require 'watirspec_helper' describe 'Maps' do before :each do browser.goto(WatirSpec.url_for('images.html')) end describe 'with selectors' do it 'returns the matching elements' do expect(browser.maps(name: 'triangle_map').to_a).to eq [browser.map(name: 'triangle_map')] end end describe '#length' do it 'returns the number of maps' do expect(browser.maps.length).to eq 2 end end describe '#[]' do it 'returns the p at the given index' do expect(browser.maps[0].id).to eq 'triangle_map' end end describe '#each' do it 'iterates through maps correctly' do count = 0 browser.maps.each_with_index do |m, index| expect(m.name).to eq browser.map(index: index).name expect(m.id).to eq browser.map(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/maps_spec.rb |