Sha256: 2ac35b847957ad52554ba7974149ed33f3a245c343aaed298e64a8e6269c0e48

Contents?: true

Size: 1006 Bytes

Versions: 3

Compression:

Stored size: 1006 Bytes

Contents

require 'spec_helper'
require 'page-object/elements'

describe PageObject::Elements::Button do
  let(:button) { PageObject::Elements::Button }
  
  context "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 = button.watir_identifier_for t => 'value'
        identifier.keys.first.should == t
      end
    end

    it "should map selenium types to same" do
      [:class, :id, :name, :xpath].each do |t|
        key, value = button.selenium_identifier_for t => 'value'
        key.should == t
      end
    end
  end

  describe "interface" do
    let(:button_element) { double('button_element') }
    
    context "for selenium" do
      it "should return error when asked for its' text" do
        button = PageObject::Elements::Button.new(button_element, :platform => :selenium)
        lambda {button.text}.should raise_error
      end      
    end
  end
  
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
page-object-0.0.5 spec/page-object/elements/button_spec.rb
page-object-0.0.4 spec/page-object/elements/button_spec.rb
page-object-0.0.3 spec/page-object/elements/button_spec.rb