Method: Selenium::Client::GeneratedDriver#set_speed
- Defined in:
- lib/selenium/client/legacy_driver.rb
#set_speed(value) ⇒ Object
Set execution speed (i.e., set the millisecond length of a delay which will follow each selenium operation). By default, there is no such delay, i.e., the delay is 0 milliseconds.
‘value’ is the number of milliseconds to pause after operation
446 447 448 |
# File 'lib/selenium/client/legacy_driver.rb', line 446 def set_speed(value) remote_control_command("setSpeed", [value,]) end |