diff --git a/Browser/version.py b/Browser/version.py index 76ad18b89..703970876 100644 --- a/Browser/version.py +++ b/Browser/version.py @@ -1 +1 @@ -__version__ = "4.0.1" +__version__ = "4.1.0" diff --git a/docs/releasenotes/Browser-4.0.1.rst b/docs/releasenotes/Browser-4.0.1.rst new file mode 100644 index 000000000..620ee29cb --- /dev/null +++ b/docs/releasenotes/Browser-4.0.1.rst @@ -0,0 +1,68 @@ +===================== +Browser library 4.0.1 +===================== + + +.. default-role:: code + + +Browser_ is a web testing library for `Robot Framework`_ that utilizes +the Playwright_ tool internally. Browser library 4.0.1 is a new release with +**UPDATE** enhancements and bug fixes. +All issues targeted for Browser library v4.0.1 can be found +from the `issue tracker`_. +If you have pip_ installed, just run +:: + pip install --upgrade robotframework-browser + rfbrowser init +to install the latest available release or use +:: + pip install robotframework-browser==4.0.1 + rfbrowser init +to install exactly this version. Alternatively you can download the source +distribution from PyPI_ and install it manually. +Browser library 4.0.1 was released on Thursday March 25, 2021. Browser supports +Python **>=3.7**, and Robot Framework **>=3.2**. + +.. _Robot Framework: http://robotframework.org +.. _Browser: https://github.com/MarketSquare/robotframework-browser +.. _Playwright: https://github.com/microsoft/playwright +.. _pip: http://pip-installer.org +.. _PyPI: https://pypi.python.org/pypi/robotframework-browser +.. _issue tracker: https://github.com/MarketSquare/robotframework-browser/milestones%3Av4.0.1 + + +.. contents:: + :depth: 2 + :local: + +Most important enhancements +=========================== + +**EXPLAIN** or remove these. + +- [Get Selected Options] keyword returns error "Error: page.$$eval: Evaluation failed: DOMException: Failed to execute 'evaluate' on 'Document': The string './/select[@name='brandCategory'] option' is not a valid XPath expression." (`#757`_) + +Full list of fixes and enhancements +=================================== + +.. list-table:: + :header-rows: 1 + + * - ID + - Type + - Priority + - Summary + * - `#757`_ + - bug + - high + - [Get Selected Options] keyword returns error "Error: page.$$eval: Evaluation failed: DOMException: Failed to execute 'evaluate' on 'Document': The string './/select[@name='brandCategory'] option' is not a valid XPath expression." + * - `#732`_ + - bug + - medium + - Add SeleniumLibrary Set Screenshot Directory keyword counterpart + +Altogether 2 issues. View on the `issue tracker `__. + +.. _#757: https://github.com/MarketSquare/robotframework-browser/issues/757 +.. _#732: https://github.com/MarketSquare/robotframework-browser/issues/732 diff --git a/docs/versions/Browser-4.0.1.html b/docs/versions/Browser-4.0.1.html new file mode 100644 index 000000000..aa1d7c35b --- /dev/null +++ b/docs/versions/Browser-4.0.1.html @@ -0,0 +1,1036 @@ + + + + + + + + + + + + + + + + + + + + + + + + +
+

Opening library documentation failed

+ +
+ + + + + + + + + + + diff --git a/docs/versions/Browser-4.1.0.html b/docs/versions/Browser-4.1.0.html new file mode 100644 index 000000000..8366692e6 --- /dev/null +++ b/docs/versions/Browser-4.1.0.html @@ -0,0 +1,1683 @@ + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Opening library documentation failed

+ +
+ + + + + + + + + + + + + + + diff --git a/package.json b/package.json index b6d569636..f713876b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "robotframework-playwright", - "version": "4.0.1", + "version": "4.1.0", "main": "index.ts", "author": "Mikko Korpela ", "license": "Apache-2.0", diff --git a/setup.py b/setup.py index 1bf26bbfe..a019602da 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup_kwargs = { "name": "robotframework-browser", - "version": "4.0.1", + "version": "4.1.0", "description": "Robot Framework Browser library powered by Playwright. Aiming for speed, reliability and visibility.", "long_description": long_description, "long_description_content_type": "text/markdown",