0% found this document useful (0 votes)
68 views6 pages

Ieclass - Java: Import Import Import Import

The document contains code for several Java classes that use Selenium to automate tests in Internet Explorer. The classes navigate to websites, find elements by XPath, click links and buttons, handle radio buttons and lists of elements, and more. They demonstrate common Selenium tasks like initializing the driver, getting pages, finding elements, interacting with forms, and asserting results.

Uploaded by

Mallikarjun Rao
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
68 views6 pages

Ieclass - Java: Import Import Import Import

The document contains code for several Java classes that use Selenium to automate tests in Internet Explorer. The classes navigate to websites, find elements by XPath, click links and buttons, handle radio buttons and lists of elements, and more. They demonstrate common Selenium tasks like initializing the driver, getting pages, finding elements, interacting with forms, and asserting results.

Uploaded by

Mallikarjun Rao
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 6

ieClass.

java
import java.util.concurrent.TimeUnit;

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

public class ieClass {

public static void main(String[] args) {


// TODO Auto-generated method stub

System.setProperty("webdriver.ie.driver",
"C:\\Users\\b\\Myworkspace\\IEProject\\Lib\\IEDriverServer.exe");
WebDriver ieDriver = new InternetExplorerDriver();

ieDriver.get("https://www.w3schools.com/");

ieDriver.findElement(By.xpath("html/body/nav[1]/div/a[1]")).click();

//ieDriver.findElement(By.xpath("html/body/div[2]/div[8]/div[1]/div[2]/a[5]"))
.click();

myClass.java
package myProject;

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

public class myClass {

public static void main(String[] args) throws InterruptedException {


// TODO Auto-generated method stub

System.setProperty("webdriver.ie.driver","C:\\Users\\b\\Myworkspace\\myProject
\\Lib\\IEDriverServer.exe");
WebDriver ieDriver = new InternetExplorerDriver();

//ieDriver.get("http://www.facebook.com/");

ieDriver.navigate().to("http://rediffmail.com");

ieDriver.manage().window().maximize();

ieDriver.findElement(By.xpath("//*[@id='signin_info']/a[1]")).click();

//sign in path

// try {
// Thread.sleep(5000);
// } catch (InterruptedException e) {
// TODO Auto-generated catch block
// e.printStackTrace();
// }

//ieDriver.findElement(By.xpath("html/body/div[1]/div[1]/div[2]/a")).click();

//login page

//ieDriver.navigate().forward();

ieDriver.navigate().back();

//back to home page

Thread.sleep(5000);

ieDriver.findElement(By.xpath("//*[@id='hm_top_navlink_div']/a[5]/div")).click
();

ieDriver.navigate().back();

//ieDriver.navigate().refresh();

//ieDriver.close();

//ieDriver.quit();

//ieDriver.findElement(By.xpath("//*[@id='mySidenav']/div/a[text()='Learn
CSS']/preceding-sibling::a[1]")).click();
//ieDriver.findElement(By.xpath("//*[@id='mySidenav']/div/a[text()='Learn
CSS']/following-sibling::a[8]")).click();

//ieDriver.findElement(By.id("mySidenav"));

//ieDriver.findElement(By.xpath("//*[@id='navbtn_examples']")).click();

//ieDriver.findElement(By.xpath("html/body/div[5]/div/a[1]")).click();

//ieDriver.findElement(By.xpath("//*[@id='gsc-i-id1']"));

//ieDriver.findElement(By.name("search")).sendKeys("search by name");

//ieDriver.findElement(By.className("gsc-input"));

//ieDriver.findElement(By.xpath("//*[@id='login_form']/table/tbody/tr[3]/td[2]
/div/a"));
//ieDriver.findElement(By.linkText("Forgotten account?")).click();
//ieDriver.findElement(By.partialLinkText("account?")).click();

//ieDriver.getTitle();

//ieDriver.findElement(By.name("email")).sendKeys("XYZ@gmail.com");

//ieDriver.findElement(By.name("pass")).sendKeys("ABC");

//ieDriver.findElement(By.id("u_0_2")).click();

DynamicXPathClass.java

import java.util.concurrent.TimeUnit;

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

public class dynamicXPClass {


public static void main(String[] args) throws InterruptedException {
// TODO Auto-generated method stub

System.setProperty("webdriver.ie.driver",
"C:\\Users\\b\\Myworkspace\\DynamicXPathProject\\Lib\\IEDriverServer.exe");

WebDriver ieDriver = new InternetExplorerDriver();

ieDriver.get("http://yahoo.com");

ieDriver.manage().window().maximize();

ieDriver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);

ieDriver.findElement(By.xpath("//*[@id='uh-search-
box']")).sendKeys("selenium");

Thread.sleep(3000);

List<WebElement> list = ieDriver.findElements(By.xpath("//*[starts-


with(@id,'yui_3_10_0_1_152227456751')]"));

System.out.println(list.size());

RadioClass.Java
import java.util.List;
import java.util.concurrent.TimeUnit;

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

public class radioClass {

public static void main(String[] args) {


// TODO Auto-generated method stub

System.setProperty("webdriver.ie.driver","C:\\Users\\b\\Myworkspace\\NewRadio\
\Lib\\IEDriverServer.exe");
WebDriver ieDriver = new InternetExplorerDriver();

ieDriver.get("http://www.echoecho.com/htmlforms10.htm");
ieDriver.manage().window().maximize();

ieDriver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);

List<WebElement> list =
ieDriver.findElements(By.xpath("//input[@name='group1']"));

System.out.println(list.size());

for(WebElement e:list)
{
System.out.println(e.getAttribute("value"));
System.out.println(e.isSelected());

if(e.getAttribute("value").equals("Cheese")){
e.click();
}
}

System.out.println("------------------");
for(WebElement e:list)
{
System.out.println(e.getAttribute("value"));
System.out.println(e.isSelected());

Pizzahut class .java


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

public class secondRadioClass {

public static void main(String[] args) {


// TODO Auto-generated method stub
System.setProperty("webdriver.ie.driver","C:\\Users\b\\Myworkspace\\NewRadio\\
Lib\\IEDriverServer.exe");

WebDriver ieDriver = new InternetExplorerDriver();

ieDriver.get("http://online.pizzahut.co.in");

ieDriver.manage().window().maximize();

You might also like