|
| 1 | +===================== |
| 2 | +SeleniumLibrary 3.0.1 |
| 3 | +===================== |
| 4 | + |
| 5 | + |
| 6 | +.. default-role:: code |
| 7 | + |
| 8 | + |
| 9 | +SeleniumLibrary_ is a web testing library for `Robot Framework`_ that utilizes |
| 10 | +the Selenium_ tool internally. SeleniumLibrary 3.0.1 is a new release with |
| 11 | +one bugfix. The release 3.0.0 contained bug with `Wait Until Element Is Not Visible` |
| 12 | +keyword, if element was not in the DOM, the element was considered as visible. |
| 13 | + |
| 14 | +All issues targeted for SeleniumLibrary v3.0.1 can be found |
| 15 | +from the `issue tracker`_. |
| 16 | + |
| 17 | +If you have pip_ installed, just run |
| 18 | + |
| 19 | +:: |
| 20 | + |
| 21 | + pip install --upgrade robotframework-seleniumlibrary |
| 22 | + |
| 23 | +to install the latest available release or use |
| 24 | + |
| 25 | +:: |
| 26 | + |
| 27 | + pip install robotframework-seleniumlibrary==3.0.1 |
| 28 | + |
| 29 | +to install exactly this version. Alternatively you can download the source |
| 30 | +distribution from PyPI_ and install it manually. |
| 31 | + |
| 32 | +SeleniumLibrary 3.0.1 was released on Saturday December 9, 2017. |
| 33 | + |
| 34 | +.. _Robot Framework: http://robotframework.org |
| 35 | +.. _SeleniumLibrary: https://github.com/robotframework/SeleniumLibrary |
| 36 | +.. _Selenium: http://seleniumhq.org |
| 37 | +.. _pip: http://pip-installer.org |
| 38 | +.. _PyPI: https://pypi.python.org/pypi/robotframework-seleniumlibrary |
| 39 | +.. _issue tracker: https://github.com/robotframework/SeleniumLibrary/issues?q=milestone%3Av3.0.1 |
| 40 | + |
| 41 | + |
| 42 | +.. contents:: |
| 43 | + :depth: 2 |
| 44 | + :local: |
| 45 | + |
| 46 | +Most important enhancements |
| 47 | +=========================== |
| 48 | + |
| 49 | +Change between 1.8.0 and 3.0.0 when using Wait Until Element Is Not Visible. In 3.0.0 element is consider visible if the element does not exist in the DOM. (`#1008`_) |
| 50 | +---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 51 | +In the 1.8.0 release the element is considered as not visible when the element does not |
| 52 | +exist in the DOM. But there was a change in the 3.0.0 release and element is considered |
| 53 | +as visible if the element is not int he DOM. This is now fixed and element is not |
| 54 | +visible also when the element is not in the DOM. |
| 55 | + |
| 56 | +Full list of fixes and enhancements |
| 57 | +=================================== |
| 58 | + |
| 59 | +.. list-table:: |
| 60 | + :header-rows: 1 |
| 61 | + |
| 62 | + * - ID |
| 63 | + - Type |
| 64 | + - Priority |
| 65 | + - Summary |
| 66 | + * - `#1008`_ |
| 67 | + - bug |
| 68 | + - critical |
| 69 | + - Change between 1.8.0 and 3.0.0 when using Wait Until Element Is Not Visible. In 3.0.0 element is consider visible if the element does not exist in the DOM. |
| 70 | + |
| 71 | +Altogether 1 issue. View on the `issue tracker <https://github.com/robotframework/SeleniumLibrary/issues?q=milestone%3Av3.0.1>`__. |
| 72 | + |
| 73 | +.. _#1008: https://github.com/robotframework/SeleniumLibrary/issues/1008 |
0 commit comments