Sha256: d5d6203bea4bd760139236d6b49e15100e5f669b67f6550e0049039bf3001afa
Contents?: true
Size: 850 Bytes
Versions: 7
Compression:
Stored size: 850 Bytes
Contents
require 'spec_helper' require 'page-object/elements' describe PageObject::Elements::Paragraph do let(:paragraph) { PageObject::Elements::Paragraph } describe "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 = paragraph.watir_identifier_for t => 'value' expect(identifier.keys.first).to eql t end end it "should map selenium types to same" do [:class, :id, :name, :xpath, :index].each do |t| key, value = paragraph.selenium_identifier_for t => 'value' expect(key).to eql t end end end describe "interface" do it "should register with type :checkbox" do expect(::PageObject::Elements.element_class_for(:p)).to eql ::PageObject::Elements::Paragraph end end end
Version data entries
7 entries across 7 versions & 2 rubygems