module Selenium::WebDriver::Atoms

Private Instance Methods

execute_atom(function_name, *arguments) click to toggle source
# File lib/selenium/webdriver/atoms.rb, line 30
def execute_atom(function_name, *arguments)
  script = format("return (%<atom>s).apply(null, arguments)", atom: read_atom(function_name))
  execute_script(script, *arguments)
end
read_atom(function) click to toggle source
# File lib/selenium/webdriver/atoms.rb, line 26
def read_atom(function)
  File.read(File.expand_path("../atoms/#{function}.js", __FILE__))
end