Where to find Selenium Webdriver release notes?

前端 未结 3 1724
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-04 01:02

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

3条回答
  •  孤街浪徒
    2021-02-04 01:48

    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

提交回复
热议问题