Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.7k points)

I'm trying to write a test with selenium in python language for a web page that manages users. In this page, someone can add a role for users and if a role exists while adding it, an alert raises. I don't know if the alert is a javascript alert or an element of the web page. I want to automatically check the existence of the alert, because checking for the role in the list wastes time and has an enormous load. I tried this:

browser = webdriver.Firefox()

browser.get("url")

browser.find_the_element_by_id("add_button").click()

try:

    alert = browser.switch_to_alert()

    alert.accept()

    print "alert accepted"

except:

    print "no alert"

But it didn't work and I got the "UnexpectedAlertPresentException". I also tried this:

browser = webdriver.Firefox()

browser.get("url")

browser.find_the_element_by_id("add_button").click()

s = set(browser.window_handles)

s.remove(browser.current_window_handle)

browser.switch_to_window(s.pop()) 

But I got the same exception. Additionally, I tried to access the alert with firebug to check if I can get access with its properties, but right-click was disabled. I need a solution very quickly, even in other languages. I can understand the approach anyway. I will appreciate any help.

1 Answer

0 votes
by (62.9k points)

In java, we do it like this

WebDriverWait wait = new WebDriverWait(driver, 7000);

wait.until(ExpectedConditions.alertIsPresent());

driver.switchTo().alert().accept();

It will wait for an alert if an alert is not present, implicitly and it will throw 'Alert is not present Exception' which can be caught by us and we can move ahead.

 I hope it helps.

If you are interested to learn Selenium on a much deeper level and want to become a professional in the testing domain, you should enroll yourself in industry-based Selenium online courses!

Browse Categories

...