I'm trying to automate data entry using selnium in chorme but after each click on the website I'm getting a sign in pop up similar to the image with is attached below. Is Selenim is capable to handle such alerts?
I have tried following python code
try:
WebDriverWait(browser, 10).until(EC.alert_is_present())
alert = browser.switch_to_alert()
alert.dismiss()
except TimeoutException:
pass
What's the right way to handle these kinds of pop up for browser automation?