SyntaxFix
Write A Post
Hire A Developer
Questions
You can handle popup window or alert box:
Alert alert = driver.switchTo().alert(); alert.accept();
You can also decline the alert box:
Alert alert = driver.switchTo().alert(); alert().dismiss();