Sha256: 0b744a929df3c3e2ca715c278a6fd95bfe68d4ffb04025a1c23e11b255952d6e
Contents?: true
Size: 799 Bytes
Versions: 29
Compression:
Stored size: 799 Bytes
Contents
# frozen_string_literal: true Capybara.add_selector(:table_row, locator_type: [Array, Hash]) do xpath do |locator| xpath = XPath.descendant(:tr) if locator.is_a? Hash locator.reduce(xpath) do |xp, (header, cell)| header_xp = XPath.ancestor(:table)[1].descendant(:tr)[1].descendant(:th)[XPath.string.n.is(header)] cell_xp = XPath.descendant(:td)[ XPath.string.n.is(cell) & XPath.position.equals(header_xp.preceding_sibling.count.plus(1)) ] xp[cell_xp] end else initial_td = XPath.descendant(:td)[XPath.string.n.is(locator.shift)] tds = locator.reverse.map { |cell| XPath.following_sibling(:td)[XPath.string.n.is(cell)] } .reduce { |xp, cell| xp[cell] } xpath[initial_td[tds]] end end end
Version data entries
29 entries across 26 versions & 3 rubygems