19
Dasun Eranthika How to Configure Selenium WebDriver (Java) 1

How to Configure Selenium WebDriver (java)

Embed Size (px)

Citation preview

Dasun Eranthika

How to Configure Selenium WebDriver (Java)

1

Content

Create a Project Configure Firefox Configure Chrome Configure Internet Explorer

You must pre-download eclipse

April 18, 2023

2

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Create a Project

Open eclipse Right click on Package Explorer > New > Java Project

April 18, 2023

3

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Create a Project

Give a Project name and click Next

April 18, 2023

4

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Create a Project

Go to Selenium downloads page and download Java Language bindings

Extract it in your local drive

April 18, 2023

5

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Create a Project

Right Click in your project > Properties

April 18, 2023

6

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Create a Project

Java Build Path > Libraries

April 18, 2023

7

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Create a Project

Click “Add Library..” button and add JAR files (include files in “libs” folder)

April 18, 2023

8

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Create a Project

After import JAR files, you can see “Referenced Libraries” folder

April 18, 2023

9

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Configure Firefox

Create new class file and enter following code

April 18, 2023

10

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

import org.openqa.selenium.firefox.FirefoxDriver;

public class Uers {

public static void main(String[] args) {FirefoxDriver fd = new FirefoxDriver();fd.get("http:/google.lk");}

} Site URL

Configure Firefox

Google opens through Firefox

April 18, 2023

11

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Configure Chrome

Download chrome driver from selenium download page third party section and extract it

April 18, 2023

12

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Configure Chrome

Enter following code

April 18, 2023

13

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

import org.openqa.selenium.chrome.ChromeDriver;

public class Uers {

public static void main(String[] args) {System.setProperty("webdriver.chrome.driver", "C:\\Selenium\\chromedriver.exe");ChromeDriver cd= new ChromeDriver();cd.get("http://google.lk");

}

}

Site URLLocation of chromedriver

Configure Chrome

Google opens through Chrome

April 18, 2023

14

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Configure Internet Explorer

Download Internet Explorer (IE) driver from selenium download page and extract it.

April 18, 2023

15

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Configure Internet Explorer

Enter following code

April 18, 2023

16

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

import org.openqa.selenium.ie.InternetExplorerDriver;

public class Uers {

public static void main(String[] args) {System.setProperty("webdriver.ie.driver", "C:\\Selenium\\IEDriverServer.exe");InternetExplorerDriver id= new InternetExplorerDriver();id.get("http://google.lk");

}

}

Site URL Location of IEdriver

Configure Internet Explorer

Google opens through IE

April 18, 2023

17

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

Complete code

April 18, 2023

18

How to Configure Selenium WebDriver (Java) | Dasun Eranthika

ConfigBrowsers.txt