Sha256: 8ea2af305951092e778bfa0c17cfa6f9617277f661706755e9a499ef7d279833
Contents?: true
Size: 785 Bytes
Versions: 2
Compression:
Stored size: 785 Bytes
Contents
# encoding: utf-8 module Watir module Container include XpathSupport private def browserbot(function_name, *arguments) script = browserbot_script + "return browserbot.#{function_name}.apply(browserbot, arguments);" driver.execute_script(script, *arguments) end def browserbot_script @browserbot_script ||= File.read("#{File.dirname(__FILE__)}/browserbot.js") end def extract_selector(selectors) case selectors.size when 2 return { selectors[0] => selectors[1] } when 1 obj = selectors.first return obj if obj.kind_of? Hash when 0 return {} end raise ArgumentError, "expected Hash or (:how, 'what'), got #{selectors.inspect}" end end # Container end # Watir
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.0.9 | lib/watir-webdriver/container.rb |
watir-webdriver-0.0.8 | lib/watir-webdriver/container.rb |