Sha256: 105547894ec54c2936b5485d504a88bf106763793fd96ba154e65f999a6d6882
Contents?: true
Size: 719 Bytes
Versions: 24
Compression:
Stored size: 719 Bytes
Contents
module Watir module Generator class HTML < Base private def ignored_tags # ignore the link element for now %w(link) end def ignored_interfaces ignored = ignored_tags.map { |tag| "HTML#{tag.capitalize}Element" } # frame is implemented manually, see https://github.com/watir/watir/issues/204 ignored << 'HTMLFrameElement' end def ignored_attributes %w(cells elements hash rows span text) end def generator_implementation 'HTML' end def visitor_class HTML::Visitor end def extractor_class HTML::SpecExtractor end end # Generator end # HTML end # Watir
Version data entries
24 entries across 24 versions & 1 rubygems