Sha256: c0aa91da6117d5dcf3a94bf4f7a0ab2bb9a508bfcd0960fd96dabb687a1e9dde
Contents?: true
Size: 1.63 KB
Versions: 20
Compression:
Stored size: 1.63 KB
Contents
require 'spec_helper' require 'page-object/platforms/selenium_webdriver/page_object' require 'page-object/elements' class SeleniumTestPageObject include PageObject end describe PageObject::Platforms::SeleniumWebDriver::PageObject do let(:selenium_browser) { mock_selenium_browser } let(:selenium_page_object) { SeleniumTestPageObject.new(selenium_browser) } before(:each) do selenium_browser.stub(:switch_to).and_return(selenium_browser) selenium_browser.stub(:default_content) end context "when building identifiers hash" do it "should add tag_name when identifying by text for hidden_field" do expected_identifier = {:text => 'foo', :tag_name => 'input', :type => 'hidden'} PageObject::Elements::HiddenField.should_receive(:selenium_identifier_for).with(expected_identifier) selenium_browser.should_receive(:find_element) selenium_page_object.platform.hidden_field_for(:text => 'foo') end it "should add tag_name when identifying by href for anchor" do expected_identifier = {:href => 'foo', :tag_name => 'a'} PageObject::Elements::Link.should_receive(:selenium_identifier_for).with(expected_identifier) selenium_browser.should_receive(:find_element) selenium_page_object.platform.link_for(:href => 'foo') end it "should add tag_name when identifying by text for div" do expected_identifier = {:text => 'foo', :tag_name => 'div'} PageObject::Elements::Div.should_receive(:selenium_identifier_for).with(expected_identifier) selenium_browser.should_receive(:find_element) selenium_page_object.platform.div_for(:text => 'foo') end end end
Version data entries
20 entries across 20 versions & 1 rubygems