TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

Selenium Webdriver Running Test on IE Browser

Selenium Webdriver Running Test on IE Browser with Introduction, features, selenium basic terminology, what is selenium, selenium limitations, selenium vs qtp, tool suite, selenium ide, ide-installation, ide-features, ide-first test case, ide-commands, ide-creating test cases manually, ide-login test etc.

<< Back to SELENIUM

Selenium WebDriver- Running test on IE Browser

In this section, you will learn how to run your Selenium Test Scripts on IE Browser.

Internet Explorer implements the WebDriver protocol using Internet Explorer Driver Server. The Internet explorer Driver Server is the link between your tests in Selenium and the Internet Explorer Browser.

Let us consider a test case in which we will try to automate the following scenarios in IE browser.

We will create our fourth test case in the same test suite (Demo_Test).

Step1. Right click on the "src" folder and create a new Class File from New > Class. Give your Class name as "Fourth" and click on "Finish" button.


Selenium WebDriver Running test on IE Browser
Selenium WebDriver Running test on IE Browser

Step2. Open URL: http://selenium-release.storage.googleapis.com/index.html?path=2.48/ in your browser.

Step3. Choose the latest version and download as per the operating system you are currently working on.

For windows 64 bit, click on the "IEDriverServer x64 2.48.0 zip" download.


Selenium WebDriver Running test on IE Browser

The downloaded file would be in zipped format. Unpack the contents in a convenient directory.


Selenium WebDriver Running test on IE Browser

Step4. Set a system property "webdriver.ie.driver" to the path of your IEDriverServer.exe file and instantiate an IEDriver class.

Here is a sample code to do that.

// System Property for IEDriver 
System.setProperty("webdriver.ie.driver", "D:\\IE Driver Server\\IEDriverServer.exe");
		
     // Instantiate a IEDriver class. 	
WebDriver driver=new InternetExplorerDriver();

Step5. Now it is time to code. We have embedded comments for each block of code to explain the steps clearly.

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;

public class Fourth {

	public static void main(String[] args) {
	
		    // System Property for IEDriver 
		System.setProperty("webdriver.ie.driver", "D:\\IE Driver Server\\IEDriverServer.exe");
		
	       // Instantiate a IEDriver class. 	
		WebDriver driver=new InternetExplorerDriver();
		
		   // Launch Website
		driver.navigate().to("http://www.google.com/");
		
		   //Maximize the browser
	      driver.manage().window().maximize();
	      
	       // Click on the search text box and send value
		driver.findElement(By.id("lst-ib")).sendKeys("TheDeveloperBlog tutorials");
			
		   // Click on the search button
		driver.findElement(By.name("btnK")).click();
		  

	}

}

The Eclipse code window will look like this:


Selenium WebDriver Running test on IE Browser

Step6. Right click on the Eclipse code and select Run As > Java Application.


Selenium WebDriver Running test on IE Browser

Step6. The output of above test script would be displayed in Internet Explorer browser.


Selenium WebDriver Running test on IE Browser




Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf