Selenium Java - Handling Windows, Frames, and Alerts
What will be the output of the following code snippet if the prompt alert is displayed with message "Enter name" and user inputs "Alice"?
```java
Alert prompt = driver.switchTo().alert();
prompt.sendKeys("Alice");
prompt.accept();
String result = driver.findElement(By.id("output")).getText();
System.out.println(result);
```
