mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
161 lines
4.7 KiB
Ruby
161 lines
4.7 KiB
Ruby
module Capybara
|
|
# this is a class for generating XPath queries, use it like this:
|
|
# Xpath.text_field('foo').link('blah').to_s
|
|
# this will generate an XPath that matches either a text field or a link
|
|
class XPath
|
|
|
|
class << self
|
|
def from_css(css)
|
|
Nokogiri::CSS.xpath_for(css).first
|
|
end
|
|
alias_method :for_css, :from_css
|
|
|
|
def wrap(path)
|
|
if path.is_a?(self)
|
|
path
|
|
else
|
|
new(path.to_s)
|
|
end
|
|
end
|
|
|
|
def respond_to?(method)
|
|
new.respond_to?(method)
|
|
end
|
|
|
|
def method_missing(*args)
|
|
new.send(*args)
|
|
end
|
|
end
|
|
|
|
attr_reader :paths
|
|
|
|
def initialize(*paths)
|
|
@paths = paths
|
|
end
|
|
|
|
def field(locator, options={})
|
|
if options[:with]
|
|
fillable_field(locator, options)
|
|
else
|
|
xpath = fillable_field(locator)
|
|
xpath = xpath.input_field(:file, locator, options)
|
|
xpath = xpath.checkbox(locator, options)
|
|
xpath = xpath.radio_button(locator, options)
|
|
xpath.select(locator, options)
|
|
end
|
|
end
|
|
|
|
def fillable_field(locator, options={})
|
|
[:text, :password, :email, :url, :search, :tel, :color].inject(text_area(locator, options)) do |all, type|
|
|
all.input_field(type, locator, options)
|
|
end
|
|
end
|
|
|
|
def content(locator)
|
|
append("/descendant-or-self::*[contains(.,#{s(locator)})]")
|
|
end
|
|
|
|
def table(locator)
|
|
append("//table[@id=#{s(locator)} or contains(caption,#{s(locator)})]")
|
|
end
|
|
|
|
def fieldset(locator)
|
|
append("//fieldset[@id=#{s(locator)} or contains(legend,#{s(locator)})]")
|
|
end
|
|
|
|
def link(locator)
|
|
xpath = append("//a[@href][@id=#{s(locator)} or contains(.,#{s(locator)}) or contains(@title,#{s(locator)}) or img[contains(@alt,#{s(locator)})]]")
|
|
xpath.prepend("//a[@href][text()=#{s(locator)} or @title=#{s(locator)} or img[@alt=#{s(locator)}]]")
|
|
end
|
|
|
|
def button(locator)
|
|
xpath = append("//input[@type='submit' or @type='image' or @type='button'][@id=#{s(locator)} or contains(@value,#{s(locator)})]")
|
|
xpath = xpath.append("//button[@id=#{s(locator)} or contains(@value,#{s(locator)}) or contains(.,#{s(locator)})]")
|
|
xpath = xpath.prepend("//input[@type='submit' or @type='image' or @type='button'][@value=#{s(locator)}]")
|
|
xpath = xpath.prepend("//button[@value=#{s(locator)} or text()=#{s(locator)}]")
|
|
end
|
|
|
|
def text_area(locator, options={})
|
|
options = options.merge(:text => options[:with]) if options.has_key?(:with)
|
|
add_field(locator, "//textarea", options)
|
|
end
|
|
|
|
def select(locator, options={})
|
|
add_field(locator, "//select", options)
|
|
end
|
|
|
|
def input_field(type, locator, options={})
|
|
options = options.merge(:value => options[:with]) if options.has_key?(:with)
|
|
add_field(locator, "//input[@type='#{type}']", options)
|
|
end
|
|
|
|
def scope(scope)
|
|
XPath.new(*paths.map { |p| scope + p })
|
|
end
|
|
|
|
def to_s
|
|
@paths.join(' | ')
|
|
end
|
|
|
|
def append(path)
|
|
XPath.new(*[@paths, XPath.wrap(path).paths].flatten)
|
|
end
|
|
|
|
def prepend(path)
|
|
XPath.new(*[XPath.wrap(path).paths, @paths].flatten)
|
|
end
|
|
|
|
def checkbox(locator, options={})
|
|
input_field(:checkbox, locator, options)
|
|
end
|
|
|
|
def radio_button(locator, options={})
|
|
input_field(:radio, locator, options)
|
|
end
|
|
|
|
[:text, :password, :email, :url, :search, :tel, :color, :file].each do |type|
|
|
class_eval <<-RUBY, __FILE__, __LINE__+1
|
|
def #{type}_field(locator)
|
|
input_field(:#{type}, locator)
|
|
end
|
|
RUBY
|
|
end
|
|
|
|
protected
|
|
|
|
def add_field(locator, field, options={})
|
|
postfix = extract_postfix(options)
|
|
xpath = append("#{field}[@id=#{s(locator)}]#{postfix}")
|
|
xpath = xpath.append("#{field}[@name=#{s(locator)}]#{postfix}")
|
|
xpath = xpath.append("#{field}[@id=//label[contains(.,#{s(locator)})]/@for]#{postfix}")
|
|
xpath = xpath.append("//label[contains(.,#{s(locator)})]#{field}#{postfix}")
|
|
xpath.prepend("#{field}[@id=//label[text()=#{s(locator)}]/@for]#{postfix}")
|
|
end
|
|
|
|
def extract_postfix(options)
|
|
options.inject("") do |postfix, (key, value)|
|
|
case key
|
|
when :value then postfix += "[@value=#{s(value)}]"
|
|
when :text then postfix += "[text()=#{s(value)}]"
|
|
when :checked then postfix += "[@checked]"
|
|
when :unchecked then postfix += "[not(@checked)]"
|
|
end
|
|
postfix
|
|
end
|
|
end
|
|
|
|
# Sanitize a String for putting it into an xpath query
|
|
def s(string)
|
|
if string.include?("'")
|
|
string = string.split("'", -1).map do |substr|
|
|
"'#{substr}'"
|
|
end.join(%q{,"'",})
|
|
"concat(#{string})"
|
|
else
|
|
"'#{string}'"
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|