Sha256: 4d64d36dee9373df728ed20a2d4cd7823a39af48da33e3238cf8a24b9f5272e1

Contents?: true

Size: 1.42 KB

Versions: 12

Compression:

Stored size: 1.42 KB

Contents

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

describe PageObject::Elements::TextField do

  describe "when mapping how to find an element" do
    let(:textfield) { PageObject::Elements::TextField }

    it "should map watir types to same" do
      [:class, :id, :index, :name, :tag_name, :xpath].each do |t|
        identifier = textfield.watir_identifier_for t => 'value'
        identifier.keys.first.should == t
      end
    end

    it "should map selenium types to watir" do
      identifier = textfield.watir_identifier_for :css => 'value'
      identifier.keys.first.should == :tag_name
    end

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

    it "should map watir types to selenium" do
      key, value = textfield.selenium_identifier_for :tag_name => 'value'
      key.should == :css
    end
  end
  
  describe "interface" do
    context "for selenium" do
      it "should set its' value" do
        text_field_element = double('selenium_text_field')
        selenium_text_field = PageObject::Elements::TextField.new(text_field_element, :platform => :selenium_webdriver)
        text_field_element.should_receive(:clear)
        text_field_element.should_receive(:send_keys).with('Joseph')
        selenium_text_field.value = 'Joseph'
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
page-object-0.5.3 spec/page-object/elements/text_field_spec.rb
page-object-0.5.2 spec/page-object/elements/text_field_spec.rb
page-object-0.5.1 spec/page-object/elements/text_field_spec.rb
page-object-0.5.0 spec/page-object/elements/text_field_spec.rb
page-object-0.4.4 spec/page-object/elements/text_field_spec.rb
page-object-0.4.3 spec/page-object/elements/text_field_spec.rb
page-object-0.4.2 spec/page-object/elements/text_field_spec.rb
page-object-0.4.1 spec/page-object/elements/text_field_spec.rb
page-object-0.4.0 spec/page-object/elements/text_field_spec.rb
page-object-0.3.2 spec/page-object/elements/text_field_spec.rb
page-object-0.3.1 spec/page-object/elements/text_field_spec.rb
page-object-0.3.0 spec/page-object/elements/text_field_spec.rb