Sha256: fea8487fb8ab41ec604d883d01ad50db0122d51b5665062f8866624b36f42ab8
Contents?: true
Size: 710 Bytes
Versions: 12
Compression:
Stored size: 710 Bytes
Contents
require 'spec_helper' require 'druid/elements' describe Druid::Elements::TableCell do describe "when mapping how to find an element" do it "should map watir types to same" do [:class, :id, :index, :xpath, :name, :text].each do |t| identifier = Druid::Elements::TableCell.identifier_for t => 'value' expect(identifier.keys.first).to eql t end end end describe "interface" do it "should register with tag_name :td" do expect(Druid::Elements.element_class_for(:td)).to be Druid::Elements::TableCell end it "should register with tag_name :th" do expect(Druid::Elements.element_class_for(:th)).to be Druid::Elements::TableCell end end end
Version data entries
12 entries across 12 versions & 1 rubygems