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') } let(:wd) { double('wd') } 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(:size).and_return({'width' => 400}) expect(selenium_canvas.width).to eql 400 end it "should know its height" do expect(canvas_element).to receive(:size).and_return({'height' => 100}) expect(selenium_canvas.height).to eql 100 end end end end