I have a Selenium WebDriver project with eclipse IDE on Ubuntu 11 OS. I want to upgrade the java client driver from 2.24 to 2.25. How can I do this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I downloaded the java client driver from the selenium website (2.25.0) http://seleniumhq.org/download/ . Unpack the zip file to the dir of your choice.
Start-up eclipse and select the project you are working on. Add the latest selenium jar to the referenced lib by going to Properties->Java Build Path->Add External JARs (select the selenium jar). To do things in a clean way I removed the references to the other libs that had been there along with the older selenium (2.24) and replaced them with the new versions. You can find the new jars under selenium-2.25.0/libs folder. Add them the same way you added selenium-2.25.0.jar.
Note: This will break your project if you don’t add the jar files correctly so you may want to create a backup of your project.