Method: Selenium::WebDriver::Support::EventFiringBridge#send_keys_to_element
- Defined in:
- lib/selenium/webdriver/support/event_firing_bridge.rb
#send_keys_to_element(ref, keys) ⇒ 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.
68 69 70 71 72 |
# File 'lib/selenium/webdriver/support/event_firing_bridge.rb', line 68 def send_keys_to_element(ref, keys) dispatch(:change_value_of, create_element(ref), driver) do @delegate.send_keys_to_element(ref, keys) end end |