Selenium Java - Handling Windows, Frames, and Alerts
What will happen if you run this Selenium Java code snippet?
Alert alert = driver.switchTo().alert();
alert.sendKeys("hello");
alert.accept();