Module: Selenium::WebDriver::Atoms
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Included In:
| |
Defined in: | rb/lib/selenium/webdriver/atoms.rb |
Instance Method Summary
Instance Method Details
#atom_script(function_name)
[ GitHub ]# File 'rb/lib/selenium/webdriver/atoms.rb', line 23
def atom_script(function_name) format("/* #{function_name} */return (%<atom>s).apply(null, arguments)", atom: read_atom(function_name)) end
#execute_atom(function_name, *arguments) (private)
[ GitHub ]# File 'rb/lib/selenium/webdriver/atoms.rb', line 34
def execute_atom(function_name, *arguments) execute_script(atom_script(function_name), *arguments) end
#read_atom(function) (private)
[ GitHub ]# File 'rb/lib/selenium/webdriver/atoms.rb', line 30
def read_atom(function) File.read(File. ("../atoms/#{function}.js", __FILE__)) end