spec/page-object/elements/span_spec.rb in page-object-0.2.3 vs spec/page-object/elements/span_spec.rb in page-object-0.2.4

- old
+ new

@@ -4,17 +4,17 @@ describe PageObject::Elements::Span do let(:span) { PageObject::Elements::Span } describe "when mapping how to find an element" do it "should map watir types to same" do - [:class, :id, :index, :xpath].each do |t| + [:class, :id, :index, :text, :xpath].each do |t| identifier = span.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| + [:class, :id, :index, :name, :text, :xpath].each do |t| key, value = span.selenium_identifier_for t => 'value' key.should == t end end end \ No newline at end of file