Sha256: 9528a60745d5c2265237f90af021caca403f56597372c1c5e4cda7ad5d63bc4c
Contents?: true
Size: 791 Bytes
Versions: 25
Compression:
Stored size: 791 Bytes
Contents
module Watir class ChildRowLocator < ElementLocator def locate_all find_all_by_multiple end private def by_id nil # avoid this end def build_xpath(selectors) return if selectors.values.any? { |e| e.kind_of? Regexp } selectors.delete(:tag_name) || raise("internal error: no tag_name?!") expressions = %w[./tr] unless %w[tbody tfoot thead].include?(@wd.tag_name.downcase) expressions += %w[./tbody/tr ./thead/tr ./tfoot/tr] end attr_expr = attribute_expression(selectors) unless attr_expr.empty? expressions.map! { |e| "#{e}[#{attr_expr}]" } end xpath = expressions.join(" | ") p :build_xpath => xpath if $DEBUG xpath end end # ChildRowLocator end # Watir
Version data entries
25 entries across 25 versions & 1 rubygems