Method: Selenium::WebDriver::Support::EventFiringBridge#execute_script

Defined in:
lib/selenium/webdriver/support/event_firing_bridge.rb

#execute_script(script, *args) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

API:

  • private



90
91
92
93
94
# File 'lib/selenium/webdriver/support/event_firing_bridge.rb', line 90

def execute_script(script, *args)
  dispatch(:execute_script, script, driver) do
    @delegate.execute_script(script, *args)
  end
end