Skip to main content

Alert Handling in Selenium Web Driver

Alert have only Accept and Cancel button which which have only text in title of alert, Accept the alert, cancel the alert and provide some value/text in the alert. following is the process how to handle the alert with Selenium Web driver.
Here when user click on the change text then a alert box is opening which needed to handle.
Here in this we need to get the title of the alert, Cancel the alert, Provide value for alert text box and then accept the alert.
here you can change the URL in which you are checking and corresponding the locators to locate the web elements.
getText(): to get the alert title
sendkeys(): to provide the input to the alert
accept(): Accept the alert box
dismiss(): cancel the alert box

below is the sample code to show an alert box


 In the below code of selenium, You can have the idea regarding the get text and accept the alert box.


Now in below code sample you can understand the dismiss function of alert




Below is the code to understand this dismiss() function

 
 Now in below sample code i will let you know that how sendkeys() function will work in alert



Below is the code to understand this function

 

Comments

Popular posts from this blog

How to Put Load on a Script in JMeter

In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

JMeter Overview Description

In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.