|
| 1 | +======================= |
| 2 | +Browser library 19.10.1 |
| 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 19.10.1 is a new hotfix |
| 11 | +release on taking screenshot and making rfbrowser command line tool logger |
| 12 | +lazy. All issues targeted for Browser library v19.10.1 can be found |
| 13 | +from the `issue tracker`_. |
| 14 | +For first time installation with pip_ and BrowserBatteries_ just run |
| 15 | +:: |
| 16 | + pip install robotframework-browser robotframework-browser-batteries |
| 17 | + rfbrowser install |
| 18 | +to install the latest available release. If you upgrading |
| 19 | +from previous release with pip_, run |
| 20 | +:: |
| 21 | + pip install --upgrade robotframework-browser robotframework-browser-batteries |
| 22 | + rfbrowser clean-node |
| 23 | + rfbrowser install |
| 24 | +For first time installation with pip_ with Browser library only, just run |
| 25 | +:: |
| 26 | + pip install robotframework-browser |
| 27 | + rfbrowser init |
| 28 | +If you upgrading from previous release with pip_, run |
| 29 | +:: |
| 30 | + pip install --upgrade robotframework-browser |
| 31 | + rfbrowser clean-node |
| 32 | + rfbrowser init |
| 33 | +Alternatively you can download the source distribution from PyPI_ and |
| 34 | +install it manually. Browser library 19.10.1 was released on Thursday October 16, 2025. |
| 35 | +Browser supports Python 3.10+, Node 20/22/24 LTS and Robot Framework 6.1+. |
| 36 | +Library was tested with Playwright 1.56.0 |
| 37 | + |
| 38 | +.. _Robot Framework: http://robotframework.org |
| 39 | +.. _Browser: https://github.com/MarketSquare/robotframework-browser |
| 40 | +.. _Playwright: https://github.com/microsoft/playwright |
| 41 | +.. _pip: http://pip-installer.org |
| 42 | +.. _BrowserBatteries: https://pypi.org/project/robotframework-browser-batteries/ |
| 43 | +.. _PyPI: https://pypi.python.org/pypi/robotframework-browser |
| 44 | +.. _issue tracker: https://github.com/MarketSquare/robotframework-browser/issues?q=state%3Aclosed%20milestone%3Av19.10.1 |
| 45 | + |
| 46 | + |
| 47 | +.. contents:: |
| 48 | + :depth: 2 |
| 49 | + :local: |
| 50 | + |
| 51 | +Most important enhancements |
| 52 | +=========================== |
| 53 | + |
| 54 | +Take Screenshot can not overwrite existing filename if it does not have {index} (`#4485`_) |
| 55 | +------------------------------------------------------------------------------------------ |
| 56 | +Fixed an issue where Take Screenshot could not overwrite an existing filename if it did not have |
| 57 | +{index} marker in it. Now it correctly overwrites the file as intended. |
| 58 | + |
| 59 | +Acknowledgements |
| 60 | +================ |
| 61 | + |
| 62 | +Make logger initialization lazy to avoid permission errors (`#4491`_) |
| 63 | +--------------------------------------------------------------------- |
| 64 | +Fixed an issue where rfbrowser command line tool could cause permission errors |
| 65 | +when it was run in a folder where user did not have write permissions. Now the |
| 66 | +logger initialization is lazy and it does not try to create log file until it is |
| 67 | +actually needed. |
| 68 | + |
| 69 | +Many thanks for David Sommers for reporting the issue and suggesting a fix! |
| 70 | + |
| 71 | +Full list of fixes and enhancements |
| 72 | +=================================== |
| 73 | + |
| 74 | +.. list-table:: |
| 75 | + :header-rows: 1 |
| 76 | + |
| 77 | + * - ID |
| 78 | + - Type |
| 79 | + - Priority |
| 80 | + - Summary |
| 81 | + * - `#4485`_ |
| 82 | + - bug |
| 83 | + - critical |
| 84 | + - Take Screenshot can not overwrite existing filename if it does not have {index} |
| 85 | + * - `#4491`_ |
| 86 | + - enhancement |
| 87 | + - high |
| 88 | + - Make logger initialization lazy to avoid permission errors |
| 89 | + |
| 90 | +Altogether 2 issues. View on the `issue tracker <https://github.com/MarketSquare/robotframework-browser/issues?q=milestone%3Av19.10.1>`__. |
| 91 | + |
| 92 | +.. _#4485: https://github.com/MarketSquare/robotframework-browser/issues/4485 |
| 93 | +.. _#4491: https://github.com/MarketSquare/robotframework-browser/issues/4491 |
0 commit comments