Sha256: 69e2ef76b0c80aabfc835bd2dc55a7c12229f12660abfa369631eed00a93202e

Contents?: true

Size: 1.42 KB

Versions: 2

Compression:

Stored size: 1.42 KB

Contents

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

describe PageObject::Elements::Area do
  let(:area) { PageObject::Elements::Area }

  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 = area.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 = area.selenium_identifier_for t => 'value'
        key.should == t
      end
    end
  end

  context "implementation" do
    let(:area_element) { double('area_element') }

    context "when using selenium" do
      let(:selenium_area) { PageObject::Elements::Area.new(area_element, :platform => :selenium_webdriver) }
      
      it "should know its coords" do
        area_element.should_receive(:attribute).with(:coords).and_return("1,2,3,4")
        selenium_area.coords.should == "1,2,3,4"
      end

      it "should know its shape" do
        area_element.should_receive(:attribute).with(:shape).and_return('circle')
        selenium_area.shape.should == 'circle'
      end

      it "should know its href" do
        area_element.should_receive(:attribute).with(:href).and_return('twitter.com')
        selenium_area.href.should == 'twitter.com'
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
meeane-page-object-0.1.10 spec/page-object/elements/area_spec.rb
meeane-page-object-0.1.8 spec/page-object/elements/area_spec.rb