Based on your last question, I assume you are using Watir-Classic (even though you have also listed Watir-Webdriver).
As @orde mentioned in the comments, Watir has an Alert class for handling these types of dialogs. Unfortunately, in terms of clicking buttons, Watir-Classic only has an #ok method defined:
# Press the "OK" button on the JavaScript dialog.
def ok
dialog.button(:value => "OK").click
wait_until_not_exists
end
This will not work for this dialog as there is a "Yes" and "No" button rather than an "OK" button. You will need to duplicate this functionality with the right value.
Note that the dialog is a RAutomation window and no longer Watir specific code. As a result, the button values are not always intuitive - it is not always just the text you see. To get the right values, you should ask the dialog what values it sees:
Based on your last question, I assume you are using Watir-Classic (even though you have also listed Watir-Webdriver).
As @orde mentioned in the comments, Watir has an
Alert
class for handling these types of dialogs. Unfortunately, in terms of clicking buttons, Watir-Classic only has an#ok
method defined:This will not work for this dialog as there is a "Yes" and "No" button rather than an "OK" button. You will need to duplicate this functionality with the right value.
Note that the
dialog
is a RAutomation window and no longer Watir specific code. As a result, the button values are not always intuitive - it is not always just the text you see. To get the right values, you should ask the dialog what values it sees:We can then make the same calls as the
#ok
method, but with the correct value: