Sha256: 2a160409850b15f741c3a360e5a9dd5016c40ee4103ee9bef708372a7b5f31b2

Contents?: true

Size: 1.26 KB

Versions: 5

Compression:

Stored size: 1.26 KB

Contents

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

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

  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'
        expect(identifier.keys.first).to eql 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'
        expect(key).to eql t
      end
    end
  end

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

    context "when using selenium" do
      let(:selenium_canvas) { PageObject::Elements::Canvas.new(canvas_element, :platform => :selenium_webdriver) }

      it "should know its width" do
        expect(canvas_element).to receive(:attribute).with(:width).and_return("400")
        expect(selenium_canvas.width).to eql 400
      end

      it "should know its height" do
        expect(canvas_element).to receive(:attribute).with(:height).and_return("100")
        expect(selenium_canvas.height).to eql 100
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
page-object-lds-0.0.14 spec/page-object/elements/canvas_spec.rb
page-object-lds-0.0.13 spec/page-object/elements/canvas_spec.rb
page-object-lds-0.0.12 spec/page-object/elements/canvas_spec.rb
page-object-lds-0.0.11 spec/page-object/elements/canvas_spec.rb
page-object-lds-0.0.1 spec/page-object/elements/canvas_spec.rb