From e8943c2ab8f771f425c4f7204925fde49b6f52b1 Mon Sep 17 00:00:00 2001 From: Kerkko Pelttari Date: Wed, 13 Oct 2021 10:50:37 +0300 Subject: [PATCH] Bump to 9.0.0 --- Browser/version.py | 2 +- docs/releasenotes/Browser-9.0.0.rst | 102 ++ docs/versions/Browser-8.0.2.html | 1684 +++++++++++++++++++++++++++ package.json | 2 +- setup.py | 2 +- 5 files changed, 1789 insertions(+), 3 deletions(-) create mode 100644 docs/releasenotes/Browser-9.0.0.rst create mode 100644 docs/versions/Browser-8.0.2.html diff --git a/Browser/version.py b/Browser/version.py index 9f301e2a9..6dcf770e3 100644 --- a/Browser/version.py +++ b/Browser/version.py @@ -1 +1 @@ -__version__ = "8.0.2" +__version__ = "9.0.0" diff --git a/docs/releasenotes/Browser-9.0.0.rst b/docs/releasenotes/Browser-9.0.0.rst new file mode 100644 index 000000000..569f704b9 --- /dev/null +++ b/docs/releasenotes/Browser-9.0.0.rst @@ -0,0 +1,102 @@ +===================== +Browser library 9.0.0 +===================== + + +.. default-role:: code + + +Browser_ is a web testing library for `Robot Framework`_ that utilizes +the Playwright_ tool internally. Browser library 9.0.0 is a new release with +**UPDATE** enhancements and bug fixes. +All issues targeted for Browser library v9.0.0 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==9.0.0 + rfbrowser init +to install exactly this version. Alternatively you can download the source +distribution from PyPI_ and install it manually. +Browser library 9.0.0 was released on Wednesday October 13, 2021. Browser supports +Python 3.7+, Node 12/14 LTS and Robot Framework 3.2+. Library was +tested with Playwright 1.15.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%3Av9.0.0 + + +.. contents:: + :depth: 2 + :local: + +Most important enhancements +=========================== + +- Pip does not clean inside site-packages/Browser/wrapper anymore when uninstalling (`#1253`_) + - Sometimes pip fails to completely clean up site packages (depends on pip version and environment), now there is `rfbrowser clean-node` to run before pip uninstall to ensure cleanup +- `Click` keyword fails if locator is mix of `element` and something else (`#1084`_) +- Issue with keyword documentation example - Select Options By (`#1335`_) +- Set Strict Mode keyword documentation is not correct. (`#1320`_) +- Doc Keywords: Move closing context/page section into "Browser, Context, Page" section (`#1362`_) + +Acknowledgements +================ + +- Thanks to https://github.com/UliSei for contributing PR for: Docu keywords: "Drag And Drop By Coordinates" and "Go To" (`#1328`_) + +Full list of fixes and enhancements +=================================== + +.. list-table:: + :header-rows: 1 + + * - ID + - Type + - Priority + - Summary + * - `#1084`_ + - bug + - critical + - `Click` keyword fails if locator is mix of `element` and something else + * - `#1253`_ + - bug + - high + - Pip does not clean inside site-packages/Browser/wrapper anymore when uninstalling + * - `#1320`_ + - bug + - high + - Set Strict Mode keyword documentation is not correct. + * - `#1335`_ + - bug + - high + - Issue with keyword documentation example - Select Options By + * - `#1362`_ + - bug + - high + - Doc Keywords: Move closing context/page section into "Browser, Context, Page" section + * - `#1179`_ + - bug + - medium + - Chrome.json download link is broken + * - `#1328`_ + - bug + - medium + - Docu keywords: "Drag And Drop By Coordinates" and "Go To" + +Altogether 7 issues. View on the `issue tracker `__. + +.. _#1084: https://github.com/MarketSquare/robotframework-browser/issues/1084 +.. _#1253: https://github.com/MarketSquare/robotframework-browser/issues/1253 +.. _#1320: https://github.com/MarketSquare/robotframework-browser/issues/1320 +.. _#1335: https://github.com/MarketSquare/robotframework-browser/issues/1335 +.. _#1362: https://github.com/MarketSquare/robotframework-browser/issues/1362 +.. _#1179: https://github.com/MarketSquare/robotframework-browser/issues/1179 +.. _#1328: https://github.com/MarketSquare/robotframework-browser/issues/1328 diff --git a/docs/versions/Browser-8.0.2.html b/docs/versions/Browser-8.0.2.html new file mode 100644 index 000000000..07513aaf6 --- /dev/null +++ b/docs/versions/Browser-8.0.2.html @@ -0,0 +1,1684 @@ + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Opening library documentation failed

+
    +
  • Verify that you have JavaScript enabled in your browser.
  • +
  • Make sure you are using a modern enough browser. If using Internet Explorer, version 11 is required.
  • +
  • Check are there messages in your browser's JavaScript error log. Please report the problem if you suspect you have encountered a bug.
  • +
+
+ + + + + + + + + + + + + + + diff --git a/package.json b/package.json index c37f8a38e..65476dbd7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "robotframework-playwright", - "version": "8.0.2", + "version": "9.0.0", "main": "index.ts", "author": "Mikko Korpela ", "license": "Apache-2.0", diff --git a/setup.py b/setup.py index aa122a4af..7a8b10ce8 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup_kwargs = { "name": "robotframework-browser", - "version": "8.0.2", + "version": "9.0.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",