Sha256: 46640cc9365f01637b11f561a36d2696a158687b6ff20f4499cab41485139fa5
Contents?: true
Size: 1.52 KB
Versions: 44
Compression:
Stored size: 1.52 KB
Contents
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, :value].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, :value].each do |t| key, value = checkbox.selenium_identifier_for t => 'value' key.should == t end end end describe "interface" do let(:check_box) { double('check_box') } let(:selenium_cb) { PageObject::Elements::CheckBox.new(check_box, :platform => :selenium_webdriver) } it "should register with type :checkbox" do ::PageObject::Elements.element_class_for(:input, :checkbox).should == ::PageObject::Elements::CheckBox end context "for selenium" do it "should check" do check_box.should_receive(:click) check_box.should_receive(:selected?).and_return(false) selenium_cb.check end it "should uncheck" do check_box.should_receive(:click) check_box.should_receive(:selected?).and_return(true) selenium_cb.uncheck end it "should know if it is checked" do check_box.should_receive(:selected?).and_return(true) selenium_cb.should be_checked end end end end
Version data entries
44 entries across 44 versions & 2 rubygems