|
| 1 | +====================== |
| 2 | +Browser library 18.6.0 |
| 3 | +====================== |
| 4 | + |
| 5 | + |
| 6 | +.. default-role:: code |
| 7 | + |
| 8 | + |
| 9 | +Browser_ is a web testing library for `Robot Framework`_ that utilizes |
| 10 | +the Playwright_ tool internally. Browser library 18.6.0 is a new release with |
| 11 | +update docker image to latest from Playwright and fixing on logging when |
| 12 | +installation is done in Windows OS. All issues targeted for Browser |
| 13 | +library v18.6.0 can be found from the `issue tracker`_. |
| 14 | +For first time installation with pip_, just run |
| 15 | +:: |
| 16 | + pip install robotframework-browser |
| 17 | + rfbrowser init |
| 18 | +to install the latest available release. If you upgrading |
| 19 | +from previous release with pip_, run |
| 20 | +:: |
| 21 | + pip install --upgrade robotframework-browser |
| 22 | + rfbrowser clean-node |
| 23 | + rfbrowser init |
| 24 | +Alternatively you can download the source distribution from PyPI_ and |
| 25 | +install it manually. Browser library 18.6.0 was released on Friday June 21, 2024. |
| 26 | +Browser supports Python 3.8+, Node 18/20 LTS and Robot Framework 5.0+. |
| 27 | +Library was tested with Playwright 1.44.1 |
| 28 | + |
| 29 | +.. _Robot Framework: http://robotframework.org |
| 30 | +.. _Browser: https://github.com/MarketSquare/robotframework-browser |
| 31 | +.. _Playwright: https://github.com/microsoft/playwright |
| 32 | +.. _pip: http://pip-installer.org |
| 33 | +.. _PyPI: https://pypi.python.org/pypi/robotframework-browser |
| 34 | +.. _issue tracker: https://github.com/MarketSquare/robotframework-browser/milestones/v18.6.0 |
| 35 | + |
| 36 | + |
| 37 | +.. contents:: |
| 38 | + :depth: 2 |
| 39 | + :local: |
| 40 | + |
| 41 | +Most important enhancements |
| 42 | +=========================== |
| 43 | + |
| 44 | +Bump up browser docker base image (`#3625`_) |
| 45 | +-------------------------------------------- |
| 46 | +Docker had been build with older version of base image from Playwright, |
| 47 | +image has been updated to playwright:v1.44.1-focal and it should have |
| 48 | +never NodeJs installed. |
| 49 | + |
| 50 | +rfbrowser init in windows shows errors when logging node output. (`#3633`_) |
| 51 | +--------------------------------------------------------------------------- |
| 52 | +In older Windows rfbrowser init could display lot if error information |
| 53 | +which is related logging in console. Now all windows output is cleaned |
| 54 | +from anything alse expect plain ascii charaters. |
| 55 | + |
| 56 | +Documentation for New Context keyword and baseURL argument does not mention Wait For Navigation (`#3636`_) |
| 57 | +----------------------------------------------------------------------------------------------------------- |
| 58 | +Keyword documentation was laccking essential information, this is now fixed. |
| 59 | + |
| 60 | +Many thanks to Jani Mikkonen for providing the fix. |
| 61 | + |
| 62 | +Acknowledgements |
| 63 | +================ |
| 64 | + |
| 65 | +Fix typo in translation section (`#3611`_) |
| 66 | +------------------------------------------- |
| 67 | +Type has been fixed in documentation, many thanks to Jani Mikkonen for providing the fix. |
| 68 | + |
| 69 | +Full list of fixes and enhancements |
| 70 | +=================================== |
| 71 | + |
| 72 | +.. list-table:: |
| 73 | + :header-rows: 1 |
| 74 | + |
| 75 | + * - ID |
| 76 | + - Type |
| 77 | + - Priority |
| 78 | + - Summary |
| 79 | + * - `#3625`_ |
| 80 | + - bug |
| 81 | + - critical |
| 82 | + - Bump up browser docker base image |
| 83 | + * - `#3633`_ |
| 84 | + - bug |
| 85 | + - high |
| 86 | + - rfbrowser init in windows shows errors when logging node output. |
| 87 | + * - `#3636`_ |
| 88 | + - bug |
| 89 | + - high |
| 90 | + - Documentation for New Context keyword and baseURL argument does not mention Wait For Navigation |
| 91 | + * - `#3611`_ |
| 92 | + - bug |
| 93 | + - medium |
| 94 | + - Fix typo in translation section |
| 95 | + |
| 96 | +Altogether 4 issues. View on the `issue tracker <https://github.com/MarketSquare/robotframework-browser/issues?q=milestone%3Av18.6.0>`__. |
| 97 | + |
| 98 | +.. _#3625: https://github.com/MarketSquare/robotframework-browser/issues/3625 |
| 99 | +.. _#3633: https://github.com/MarketSquare/robotframework-browser/issues/3633 |
| 100 | +.. _#3636: https://github.com/MarketSquare/robotframework-browser/issues/3636 |
| 101 | +.. _#3611: https://github.com/MarketSquare/robotframework-browser/issues/3611 |
0 commit comments