Sha256: 232f49de7f5a99fd92d72e541eca9052a33d38795589cc5bd9bbbbdb0dabd0b4

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 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].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
  
  describe "interface" do
    let(:check_box) { double('check_box') }
    let(:selenium_cb) { PageObject::Elements::CheckBox.new(check_box, :platform => :selenium) }

    
    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

2 entries across 2 versions & 1 rubygems

Version Path
page-object-0.2.5 spec/page-object/elements/check_box_spec.rb
page-object-0.2.4 spec/page-object/elements/check_box_spec.rb