Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Browser/dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ wheel>=0.45.1
robotframework-pabot >= 5.1.0
twine >= 6.2.0
robotstatuschecker >= 4.1.1
rellu >= 0.8.1
rellu >= 2.0.0
approvaltests == 15.3.2
pytest-mock==3.15.1
Pillow==12.0.0
Expand Down
41 changes: 21 additions & 20 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,47 +51,48 @@
IS_GITPOD = "gitpod.io" in os.environ.get("GITPOD_HOST", "")

ZIP_DIR = ROOT_DIR / "zip_results"
RELEASE_NOTES_PATH = Path("docs/releasenotes/Browser-{version}.rst")
RELEASE_NOTES_PATH = Path("docs/releasenotes/Browser-{version}.md")
RELEASE_NOTES_TITLE = "Browser library {version}"
REPOSITORY = "MarketSquare/robotframework-browser"
VERSION_PATH = Path("Browser/version.py")
RELEASE_NOTES_INTRO = """
Browser_ is a web testing library for `Robot Framework`_ that utilizes
the Playwright_ tool internally. Browser library {version} is a new release with
**UPDATE** enhancements and bug fixes.
[Browser](https://github.com/MarketSquare/robotframework-browser) is a web testing
library for [Robot Framework](http://robotframework.org) that utilizes the
[Playwright](https://github.com/microsoft/playwright) tool internally. Browser
library {version} is a new release with **UPDATE** enhancements and bug fixes.
All issues targeted for Browser library {version.milestone} can be found
from the `issue tracker`_.
from the
[issue tracker](https://github.com/MarketSquare/robotframework-browser/issues?q=state%3Aclosed%20milestone%3A{version.milestone}).
For first time installation with pip_ and BrowserBatteries_ just run
::
```bash
pip install robotframework-browser robotframework-browser-batteries
rfbrowser install
```
to install the latest available release. If you upgrading
from previous release with pip_, run
::
from previous release with [pip](http://pip-installer.org), run
```bash
pip install --upgrade robotframework-browser robotframework-browser-batteries
rfbrowser clean-node
rfbrowser install
For first time installation with pip_ with Browser library only, just run
::
```
For first time installation with [pip](http://pip-installer.org) with Browser
library only, just run
```bash
pip install robotframework-browser
rfbrowser init
If you upgrading from previous release with pip_, run
::
```
If you upgrading from previous release with [pip](http://pip-installer.org), run
```bash
pip install --upgrade robotframework-browser
rfbrowser clean-node
rfbrowser init
Alternatively you can download the source distribution from PyPI_ and
```
Alternatively you can download the source distribution from
[PyPI](https://pypi.org/project/robotframework-browser/) and
install it manually. Browser library {version} was released on {date}.
Browser supports Python 3.10+, Node 20/22/24 LTS and Robot Framework 6.1+.
Library was tested with Playwright REPLACE_PW_VERSION

.. _Robot Framework: http://robotframework.org
.. _Browser: https://github.com/MarketSquare/robotframework-browser
.. _Playwright: https://github.com/microsoft/playwright
.. _pip: http://pip-installer.org
.. _BrowserBatteries: https://pypi.org/project/robotframework-browser-batteries/
.. _PyPI: https://pypi.python.org/pypi/robotframework-browser
.. _issue tracker: https://github.com/MarketSquare/robotframework-browser/issues?q=state%3Aclosed%20milestone%3A{version.milestone}
"""


Expand Down