Method: Selenium::Client::GeneratedDriver#choose_ok_on_next_confirmation

Defined in:
lib/selenium/client/legacy_driver.rb

#choose_ok_on_next_confirmationObject

Undo the effect of calling chooseCancelOnNextConfirmation. Note that Selenium’s overridden window.confirm() function will normally automatically return true, as if the user had manually clicked OK, so you shouldn’t need to use this command unless for some reason you need to change your mind prior to the next confirmation. After any confirmation, Selenium will resume using the default behavior for future confirmations, automatically returning true (OK) unless/until you explicitly call chooseCancelOnNextConfirmation for each confirmation.

Take note - every time a confirmation comes up, you must consume it with a corresponding getConfirmation, or else the next selenium operation will fail.


766
767
768
# File 'lib/selenium/client/legacy_driver.rb', line 766

def choose_ok_on_next_confirmation()
    remote_control_command("chooseOkOnNextConfirmation", [])
end