Sha256: c173060c86278e7b7fa487a2b1402306661ad3f8df8c6a7e07281726898067b0
Contents?: true
Size: 866 Bytes
Versions: 2
Compression:
Stored size: 866 Bytes
Contents
# encoding: utf-8 require File.expand_path('spec_helper', File.dirname(__FILE__)) describe "Radios" do before :each do browser.goto(WatirSpec.files + "/forms_with_input_elements.html") end describe "#length" do it "returns the number of radios" do browser.radios.length.should == 5 end end describe "#[]" do it "returns the radio button at the given index" do browser.radios[0].id.should == "new_user_newsletter_yes" end end describe "#each" do it "iterates through radio buttons correctly" do count = 0 browser.radios.each_with_index do |r, index| r.name.should == browser.radio(:index, index).name r.id.should == browser.radio(:index, index).id r.value.should == browser.radio(:index, index).value count += 1 end count.should > 0 end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.0.9 | spec/watirspec/radios_spec.rb |
watir-webdriver-0.0.8 | spec/watirspec/radios_spec.rb |