Selenium Web driver is used for Automation testing and it is a open source tool, you can create automation script for your website and run it through web driver frame work
Create a java project
once the java project is created you have to download the selenium standalone jar file here image is displayed below
Create a java project
once the java project is created you have to download the selenium standalone jar file here image is displayed below
- Once the file is download
- Extract that file on your machine
- Import the jar file in your project
- Right clicked on your project
- Clicked on built path
- Clicked on the configure built path
- Add "all the jar " file in your project
write below code in your class file and check
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class Enter_class_name {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "E:/chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("http://www.google.com");
}
}
you have to download chrome driver file from below location
http://chromedriver.storage.googleapis.com/index.html
Run this code with java application and check your bowser is open and in which Google.com site is open
No comments
Post a Comment