Skip to main content

Handling Modal Dialog Window in Selenium Webdriver

Handling Modal Dialog Window in Selenium Webdriver



In this tutorial we are going to see how to handle "Modal Dialog Window"  using Selenium Webdriver

Disadvantage using Selenium

  • Use Can't handle elements which is inside Modal Dialog Window.

Using Robot Class
  • Using Robot Class we can handle Modal Dialog Window.

In this tutorial

  • Open http://vodkabears.github.io/remodal/#
  • Click on Show button
  • In the Modal Dialog Window. Click on Follow button 


Source Code :


import java.awt.AWTException;
import java.awt.Robot;
import java.awt.Toolkit;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

import java.awt.datatransfer.StringSelection;
import java.awt.event.KeyEvent;


public class robot_demo {

public static void main(String[] args) throws InterruptedException, AWTException {
WebDriver driver=new FirefoxDriver();
driver.manage().window().maximize();
driver.get("http://vodkabears.github.io/remodal/#");
Thread.sleep(5000);
driver.findElement(By.linkText("Show")).click();
Thread.sleep(7000);
Robot rb=new Robot();
rb.keyPress(KeyEvent.VK_TAB);  
Thread.sleep(2000);
rb.keyPress(KeyEvent.VK_TAB);  
Thread.sleep(2000);
rb.keyPress(KeyEvent.VK_TAB);  
Thread.sleep(2000);
rb.keyPress(KeyEvent.VK_TAB);  
Thread.sleep(2000);
rb.keyPress(KeyEvent.VK_TAB);  
Thread.sleep(2000);
rb.keyPress(KeyEvent.VK_ENTER);

}
}

Hope you like this post

Thankyou.

Comments

Popular posts from this blog

Reporting in Selenium

How do you Handle reporting in your project ? Method 1 : Maven - Testng - Surefire report The project will be created in Maven with  SureFire Plugin  and  SuiteXmlFile  tag in the POM.xml . The testng.xml will be called in the POM.            <plugin>                 <groupId>org.apache.maven.plugins</groupId>            <artifactId>maven-surefire-plugin</artifactId>            <version>2.18.1</version>                 <configuration>                     <suiteXmlFiles>                         <suiteXmlFile>                             ...

Autonium

About Autonium Autonium is a test automation framework for web applications. This framework is built by using Java and Selenium. It uses Maven project structure. Easy to understand and use it. Having basic idea on Java, Selenium, Maven and TestNG is good enough to start with Autonium. Let’s start Automation with Autonium --------------------------------------------------- Advantages Provides support to all major browsers –  Firefox, Chrome, IE and Safari . Capability of executing scripts on  Remote Machines  by using Selenium Server. Users can make use of Selenium Web driver methods and Autonium methods. Autonium simplifies  Test data management . Test data can be read from properties files. Scripts can be developed without  hard coding  test data . Identifiers can also be read from properties files and  hard coding   of identifiers can be avoided. Test data and Identifier v...