Method: Selenium::WebDriver::Support::EventFiringBridge#executeScript

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

#executeScript(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.



72
73
74
75
76
# File 'lib/selenium/webdriver/support/event_firing_bridge.rb', line 72

def executeScript(script, *args)
  dispatch(:execute_script, script, driver) {
    @delegate.executeScript(script, *args)
  }
end