Sha256: ea077f3e62185759a6d9af80ee0bf1fbd492ee454ca75b7b97451617f4447125
Contents?: true
Size: 861 Bytes
Versions: 7
Compression:
Stored size: 861 Bytes
Contents
require 'spec_helper' require 'page-object/elements' describe PageObject::Elements::Div do let(:div) { PageObject::Elements::Div } describe "when mapping how to find an element" do it "should map watir types to same" do [:class, :id, :text, :index, :xpath, :name, :title, :css].each do |t| identifier = div.watir_identifier_for t => 'value' expect(identifier.keys.first).to eql t end end it "should map selenium types to same" do [:class, :id, :text, :index, :name, :xpath, :title, :css].each do |t| key, value = div.selenium_identifier_for t => 'value' expect(key).to eql t end end describe "interface" do it "should register with tag :div" do expect(::PageObject::Elements.element_class_for(:div)).to eql ::PageObject::Elements::Div end end end end
Version data entries
7 entries across 7 versions & 2 rubygems