Sha256: c303b6a369906a5829900edcdb9a5093d255fc006ca8a4b524267d563bfe19e6
Contents?: true
Size: 1.34 KB
Versions: 3
Compression:
Stored size: 1.34 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].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].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') } context "for selenium" do it "should return error when asked for its' value" do link = PageObject::Elements::Link.new(link_element, :platform => :selenium) lambda {link.value}.should raise_error end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
page-object-0.2 | spec/page-object/elements/link_spec.rb |
page-object-0.1.1 | spec/page-object/elements/link_spec.rb |
page-object-0.1 | spec/page-object/elements/link_spec.rb |