How to download Selenium and Create a Connection to the Project
How to download Selenium and Create a Connection to the Project
In the previous article we have seen Eclipse Installation and creating a project in Eclipse. In this article will see how to download Selenium Jars and form a connection between Selenium to our Eclipse Project.
After completion of class creation with main ( ) method, test automaters are eligible to write test scripts using selenium web driver for website pages functional testing.
Getting selenium web driver :
Selenium web driver java client of Simon Stewart is a set of java files. Every file is called as jar ( java archive ). Every jar consists of built in java classes , some classes are generic and some classes static.
To download all selenium web driver java client jars , test automater can follow below navigation.
- Go to seleniumhq.org site .
- Click download
- Click download link of java client for web driver
- Wait until complete download
- Paste the download in personal folder
- Right click on download and select extract here
- Wait until complete extract.
After completion of selenium web driver jars downloading we need to associate those jars to eclipse ide.
- Right click on project in eclipse IDE.
- Properties java build path.
- Libraries .
- Add external jars.
- Browse path of selenium web driver to associate jars in libs folder and jars outside of libs folder .
- Click ok.
In this article we have seen How to download Selenium and Create a Connection to the Project. In the next article will see Webdriver Class and Install Firefox Browser.