Skip to content

Latest commit

 

History

History
85 lines (59 loc) · 2.9 KB

SeleniumLibrary-3.1.1.rst

File metadata and controls

85 lines (59 loc) · 2.9 KB

SeleniumLibrary 3.1.1

SeleniumLibrary is a web testing library for Robot Framework that utilizes the Selenium tool internally. SeleniumLibrary 3.1.1 is a new hotfix release with fixing headless Chrome and Firefox support. Also it contains one new keyword Element Text Should Not Be.

All issues targeted for SeleniumLibrary v3.1.1 can be found from the issue tracker.

If you have pip installed, just run

pip install --upgrade robotframework-seleniumlibrary

to install the latest available release or use

pip install robotframework-seleniumlibrary==3.1.1

to install exactly this version. Alternatively you can download the source distribution from PyPI and install it manually.

SeleniumLibrary 3.1.1 was released on Tuesday March 6, 2018.

Selenium version 3.10.0 causes problems headless Chrome and Firefox support because SELENIUM_VERSION handles the version number as string. (#1075)

Due a bug in handling the Selenium version as string, inside of a named tuple, caused determination of the Selenium version to work incorrectly. This is because we check, is the minor version bigger than 8. If it is, then we allow users to launch Firefox and Chrome in headless mode. But because comparison was made as strings, the comparison started work incorrectly when Selenium reached version 3.10.0 because "8" > "10". This is now fixed and version is converted as number inside of the named tuple.

Big thanks to rubygeek for creating PR for the Element Text Should Not Be keyword.

ID Type Priority Summary
#1075 bug critical Selenium version 3.10.0 causes problems headless Chrome and Firefox support because SELENIUM_VERSION handles the version number as string.
#1065 enhancement medium Create new keyword "Element Text Should Not Be"

Altogether 2 issues. View on the issue tracker.