Sha256: 01fc8bf98209b0e7897419f1ea3054a9d06c1a404a584b47020fa8afb2b4283d

Contents?: true

Size: 969 Bytes

Versions: 3

Compression:

Stored size: 969 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, :index, :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.2.3 spec/page-object/elements/button_spec.rb
page-object-0.2.2 spec/page-object/elements/button_spec.rb
page-object-0.2.1 spec/page-object/elements/button_spec.rb