0
0
Selenium Javatesting~5 mins

Prompt alert text entry in Selenium Java - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a prompt alert in Selenium?
A prompt alert is a popup dialog box that asks the user to enter some text input before continuing. Selenium can interact with it by switching to the alert and sending text.
Click to reveal answer
beginner
How do you switch to a prompt alert in Selenium Java?
Use driver.switchTo().alert() to switch the WebDriver's focus to the alert popup.
Click to reveal answer
beginner
Which method is used to enter text into a prompt alert in Selenium Java?
The method sendKeys(String text) is used to enter text into the prompt alert.
Click to reveal answer
intermediate
What is the correct sequence to handle a prompt alert with text entry and accept it?
1. Switch to alert with driver.switchTo().alert().<br>2. Enter text using sendKeys().<br>3. Accept the alert with accept().
Click to reveal answer
beginner
Why is it important to switch to the alert before interacting with it?
Because alerts are separate from the main page DOM, Selenium must switch focus to the alert to interact with it. Otherwise, commands will fail.
Click to reveal answer
Which Selenium method is used to enter text into a prompt alert?
AsendKeys()
BsetText()
Ctype()
DinputText()
What must you do before sending text to a prompt alert in Selenium?
ASwitch to the alert using driver.switchTo().alert()
BClick on the alert element
CRefresh the page
DClose the alert first
After entering text in a prompt alert, which method accepts the alert?
Adismiss()
Baccept()
Cclose()
Dsubmit()
What happens if you try to sendKeys() without switching to the alert first?
AText is entered successfully
BNo effect, alert stays open
CThrows NoAlertPresentException
DPage reloads
Which of these is NOT a valid method for alert handling in Selenium?
Aaccept()
Bdismiss()
CsendKeys()
Dclick()
Explain the steps to enter text into a prompt alert and accept it using Selenium Java.
Think about how Selenium focuses on alerts and how to interact with them.
You got /3 concepts.
    Why is switching to the alert necessary before sending text or accepting it?
    Consider how Selenium interacts with different parts of the browser.
    You got /3 concepts.