Sha256: 9fc775749c1439c34c2f3330609a708b75ae4f39c633cbdd54e8d7db5c30becc
Contents?: true
Size: 260 Bytes
Versions: 64
Compression:
Stored size: 260 Bytes
Contents
# frozen_string_literal: true Capybara.add_selector(:id, locator_type: [String, Symbol, Regexp]) do xpath { |id| builder(XPath.descendant).add_attribute_conditions(id: id) } locator_filter { |node, id| id.is_a?(Regexp) ? id.match?(node[:id]) : true } end
Version data entries
64 entries across 51 versions & 5 rubygems