require 'spec_helper' require 'page-object/elements' describe PageObject::Elements::CheckBox do let(:checkbox) { PageObject::Elements::CheckBox } describe "when mapping how to find an element" do it "should map watir types to same" do [:class, :id, :index, :name, :xpath].each do |t| identifier = checkbox.watir_identifier_for t => 'value' identifier.keys.first.should == t end end it "should map selenium types to same" do [:class, :id, :name, :xpath, :index].each do |t| key, value = checkbox.selenium_identifier_for t => 'value' key.should == t end end end end