Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find Selenium Webdriver release notes?

Tags:

I'm looking for a release notes for Selenium WebDriver which gives details what are new features, what are bugs etc in the release.

I could find for Selenium IDE here But couldn't find for Selenium Webdriver. If anybody knows, please point me to the link.

like image 558
Alpha Avatar asked Sep 04 '13 09:09

Alpha


People also ask

Where can I download selenium jar files?

Go to the official Selenium website and download the Selenium WebDriver Java Client. You can refer to the screenshot in the steps for Windows download above. It will download the "zip" file for the stable version of Selenium WebDriver, and double-clicking on the zip file will unzip all the files in the current folder.

What is the latest version of selenium WebDriver?

Selenium 4 is the latest version of selenium; Simon Stewart founder of selenium has announced Selenium 4 at the Selenium Conference in Bangalore which consists of few major updates and its planned to release after October 2019 (even though official announcement yet to get).

What are selenium jar files?

Selenium Standalone server is a java jar file used to start the Selenium server. It is a smart proxy server that allows Selenium tests to route commands to remote web browser instances. The aim is to provide an easy way to run tests in parallel on multiple machines.

What is Selenium client library?

Selenium Client Library consists of languages like Java, Ruby, Python, C# and so on. After the test cases are triggered, entire Selenium code will be converted to Json format. JSON stands for Javascript Object Notation. It takes up the task of transferring information from the server to the client.


1 Answers

They live in the source control for the project under the respective folder for the particular language libraries. That means:

  1. .NET Libraries: https://github.com/SeleniumHQ/selenium/blob/master/dotnet/CHANGELOG
  2. Java Libraries: https://github.com/SeleniumHQ/selenium/blob/master/java/CHANGELOG
  3. Python Libraries: https://github.com/SeleniumHQ/selenium/blob/master/py/CHANGES
  4. Ruby libraries: https://github.com/SeleniumHQ/selenium/blob/master/rb/CHANGES
  5. NodeJS libraries: https://github.com/SeleniumHQ/selenium/blob/master/javascript/node/selenium-webdriver/CHANGES.md

'Special' ones:

  1. IEDriverServer changelog: https://github.com/SeleniumHQ/selenium/blob/master/cpp/iedriverserver/CHANGELOG
like image 143
Arran Avatar answered Oct 20 '22 19:10

Arran