lib/watir/js_snippets.rb in watir-6.17.0 vs lib/watir/js_snippets.rb in watir-6.18.0
- old
+ new
@@ -4,13 +4,13 @@
# @api private
#
def execute_js(function_name, *arguments)
file = File.expand_path("../js_snippets/#{function_name}.js", __FILE__)
- raise Exception::Error, "Can not excute script as #{function_name}.js does not exist" unless File.exist?(file)
+ raise Exception::Error, "Can not execute script as #{function_name}.js does not exist" unless File.exist?(file)
js = File.read(file)
script = "return (#{js}).apply(null, arguments)"
- @query_scope.execute_script(script, *arguments)
+ @query_scope.execute_script(script, *arguments, function_name: function_name)
end
end # JSSnippets
end # Watir