-
Notifications
You must be signed in to change notification settings - Fork 765
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
===================== | ||
SeleniumLibrary 6.5.0 | ||
===================== | ||
|
||
|
||
.. default-role:: code | ||
|
||
|
||
SeleniumLibrary_ is a web testing library for `Robot Framework`_ that utilizes | ||
the Selenium_ tool internally. SeleniumLibrary 6.5.0 is a new release with | ||
keyword and keyword documentation translations. | ||
|
||
If you have pip_ installed, just run | ||
|
||
:: | ||
|
||
pip install --upgrade robotframework-seleniumlibrary | ||
|
||
to install the latest available release or use | ||
|
||
:: | ||
|
||
pip install robotframework-seleniumlibrary==6.5.0 | ||
|
||
to install exactly this version. Alternatively you can download the source | ||
distribution from PyPI_ and install it manually. | ||
|
||
SeleniumLibrary 6.5.0 was released on Saturday June 15, 2024. SeleniumLibrary supports | ||
Python 3.8 through 3.11, Selenium 4.20.0 and 4.21.0 and | ||
Robot Framework 5.0.1, 6.1.1 and 7.0. | ||
|
||
.. _Robot Framework: http://robotframework.org | ||
.. _SeleniumLibrary: https://github.com/robotframework/SeleniumLibrary | ||
.. _Selenium: http://seleniumhq.org | ||
.. _pip: http://pip-installer.org | ||
.. _PyPI: https://pypi.python.org/pypi/robotframework-seleniumlibrary | ||
.. _issue tracker: https://github.com/robotframework/SeleniumLibrary/issues?q=milestone%3Av6.5.0 | ||
|
||
|
||
.. contents:: | ||
:depth: 2 | ||
:local: | ||
|
||
Most important enhancements | ||
=========================== | ||
|
||
- Keyword and keyword documentation translation (`#1908`_) | ||
This brings in the ability to translate both the keyword names as well as | ||
the keyword documentation. Details on how to create translations can be found | ||
within the keyword documentation. In addition the introduction of the selib tool | ||
allows for further enhancement like ``transform`` which will run Robotidy | ||
alongside a (future) SeleniumLibrary transformer to automatically handle keyword | ||
deprecations. | ||
|
||
A sample translation of the SeleniumLibrary keywords and documentation to Finnish | ||
can be found in | ||
`this marketsquare repo <https://github.com/MarketSquare/robotframework-seleniumlibrary-translation-fi>`_. | ||
|
||
Acknowledgements | ||
================ | ||
|
||
I want to thank | ||
|
||
- jeromehuewe for noting the unspecified upper supported Python version (`#1903`_) | ||
- `Tatu Aalto <https://github.com/aaltat>`_ for all the work around bringing in | ||
the translation documentation functionality and the selib tool (`#1907`_) | ||
|
||
I also want to thank `Yuri Verweij <https://github.com/yuriverweij>`_ for his continued | ||
collaboration on maintaining the SeleniumLibrary. | ||
|
||
Full list of fixes and enhancements | ||
=================================== | ||
|
||
.. list-table:: | ||
:header-rows: 1 | ||
|
||
* - ID | ||
- Type | ||
- Priority | ||
- Summary | ||
* - `#1908`_ | ||
- bug | ||
- high | ||
- Fix bug in etry point translation creation | ||
* - `#1903`_ | ||
- enhancement | ||
- medium | ||
- Specify supported Python version | ||
* - `#1907`_ | ||
- enhancement | ||
- medium | ||
- Translation documentation | ||
|
||
Altogether 3 issues. View on the `issue tracker <https://github.com/robotframework/SeleniumLibrary/issues?q=milestone%3Av6.5.0>`__. | ||
|
||
.. _#1908: https://github.com/robotframework/SeleniumLibrary/issues/1908 | ||
.. _#1903: https://github.com/robotframework/SeleniumLibrary/issues/1903 | ||
.. _#1907: https://github.com/robotframework/SeleniumLibrary/issues/1907 |