I am very new to using WATIR. I am writing some small scripts to test and its very cool. I have a Jquery UI Dialog box for the User Sign Up. So, the Dialog box has Username text-box, password text-box and submit button. But I could not click the submit button. I could not detect any element inside the Dialog box. Please someone advice me to pass over this.
require "rubygems"
require "watir-webdriver"
require "watir-webdriver/extensions/alerts"
if browser.button(name: "commit").exists?
#then browser.button(name: "commit").click
then browser.javascript_dialog.button(name: "commit").click
puts " Dialog box Detected"
else puts " Failed"
puts " Dialog box is not Detected"
end
Its shows the Failed and the Dialog box is not Detected..
Here is the example of what i need to do... Modal Example I need to find any elements in the dialog box. Thanks..
