Sha256: a6daf1833e786f6595ac0941e72b01b2ece1cf4ba9734c85d338119cfad1ef62

Contents?: true

Size: 1.6 KB

Versions: 5

Compression:

Stored size: 1.6 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'
        expect(identifier.keys.first).to eql 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'
        expect(key).to eql 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
      expect(::PageObject::Elements.element_class_for(:input, :checkbox)).to eql ::PageObject::Elements::CheckBox
    end
    
    context "for selenium" do
      it "should check" do
        expect(check_box).to receive(:click)
        expect(check_box).to receive(:selected?).and_return(false)
        selenium_cb.check
      end

      it "should uncheck" do
        expect(check_box).to receive(:click)
        expect(check_box).to receive(:selected?).and_return(true)
        selenium_cb.uncheck
      end
      
      it "should know if it is checked" do
        expect(check_box).to receive(:selected?).and_return(true)
        expect(selenium_cb).to be_checked
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
page-object-lds-0.0.14 spec/page-object/elements/check_box_spec.rb
page-object-lds-0.0.13 spec/page-object/elements/check_box_spec.rb
page-object-lds-0.0.12 spec/page-object/elements/check_box_spec.rb
page-object-lds-0.0.11 spec/page-object/elements/check_box_spec.rb
page-object-lds-0.0.1 spec/page-object/elements/check_box_spec.rb