lib/watir/js_snippets.rb in watir-6.14.0 vs lib/watir/js_snippets.rb in watir-6.15.0

- old
+ new

@@ -4,10 +4,10 @@ # @api private # def execute_js(function_name, *arguments) file = File.expand_path("../js_snippets/#{function_name}.js", __FILE__) - raise Watir::Error, "Can not excute script as #{function_name}.js does not exist" unless File.exist?(file) + raise Exception::Error, "Can not excute 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) end