Sha256: 72127c710b2953fad1a492f4d380569c1c00dea2138dddaf8502c0096224fedb
Contents?: true
Size: 771 Bytes
Versions: 38
Compression:
Stored size: 771 Bytes
Contents
require "watirspec_helper" describe 'TextArea' do before :each do browser.goto WatirSpec.url_for('forms_with_input_elements.html') end context 'when locating by :value' do before(:each) do browser.textarea(index: 0).set 'foo1' browser.textarea(index: 1).set 'foo2' end it 'finds textareas by string' do expect(browser.textareas(value: 'foo1').map(&:id)).to eq [browser.textarea(index: 0).id] expect(browser.textareas(value: 'foo2').map(&:id)).to eq [browser.textarea(index: 1).id] end it 'finds textareas by regexp' do expect(browser.textareas(value: /foo/)[0].id).to eq browser.textarea(index: 0).id expect(browser.textareas(value: /foo/)[1].id).to eq browser.textarea(index: 1).id end end end
Version data entries
38 entries across 38 versions & 1 rubygems