Sha256: b97ff92415afeb265f45ae5715bb33b71cf9c4335254181616f8cb367e2e6212

Contents?: true

Size: 1.49 KB

Versions: 34

Compression:

Stored size: 1.49 KB

Contents

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

describe PageObject::Elements::Link do
  let(:link) { PageObject::Elements::Link }

  describe "when mapping how to find an element" do
    it "should map watir types to same" do
      [:class, :href, :id, :index, :name, :text, :xpath, :css, :title].each do |t|
        identifier = link.watir_identifier_for t => 'value'
        identifier.keys.first.should == t
      end
    end

    it "should map selenium types to watir" do
      [:link, :link_text].each do |t|
        identifier = link.watir_identifier_for t => 'value'
        identifier.keys.first.should == :text
      end
    end

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

    it "should map watir types to selenium" do
      key, value = link.selenium_identifier_for :text => 'value'
      key.should == :link_text
    end
  end

  describe "interface" do
    let(:link_element) { double('link_element') }

    it "should register with tag :a" do
      ::PageObject::Elements.element_class_for(:a).should == ::PageObject::Elements::Link
    end

    context "for selenium" do
      it "should return error when asked for its' value" do
        link = PageObject::Elements::Link.new(link_element, :platform => :selenium_webdriver)
        lambda { link.value }.should raise_error
      end
    end
  end
end

Version data entries

34 entries across 34 versions & 2 rubygems

Version Path
page-object-0.8.4 spec/page-object/elements/link_spec.rb
page-object-0.8.3 spec/page-object/elements/link_spec.rb
page-object-0.8.2 spec/page-object/elements/link_spec.rb
page-object-0.8.1 spec/page-object/elements/link_spec.rb
page-object-0.8 spec/page-object/elements/link_spec.rb
page-object-0.7.6 spec/page-object/elements/link_spec.rb
page-object-0.7.5.1 spec/page-object/elements/link_spec.rb
page-object-0.7.5 spec/page-object/elements/link_spec.rb
page-object-0.7.4 spec/page-object/elements/link_spec.rb
page-object-0.7.3 spec/page-object/elements/link_spec.rb
page-object-0.7.2 spec/page-object/elements/link_spec.rb
page-object-0.7.1 spec/page-object/elements/link_spec.rb
page-object-0.7.0 spec/page-object/elements/link_spec.rb
page-object-0.6.9 spec/page-object/elements/link_spec.rb