diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index f124760b6..614a88a44 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -94,7 +94,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install Robot Framework Browser env: - VERSION: 0.9.0 + VERSION: 0.10.0 run: | pip install "artifacts/robotframework_browser-$VERSION-py3-none-any.whl" pip install -U robotframework-pabot diff --git a/Browser/gen_stub.py b/Browser/gen_stub.py index 5fdef3d9d..2e1012a5c 100644 --- a/Browser/gen_stub.py +++ b/Browser/gen_stub.py @@ -89,6 +89,6 @@ class Browser: def __init__(self, {str(inspect.signature(br.__init__))[1:]}: ...\n """ -with open("__init__.pyi", "w") as stub_file: +with open("Browser/__init__.pyi", "w") as stub_file: stub_file.write(pyi_boilerplate) stub_file.writelines(function_list) diff --git a/Browser/version.py b/Browser/version.py index 976684abd..412148a32 100644 --- a/Browser/version.py +++ b/Browser/version.py @@ -1 +1 @@ -VERSION = "0.9.0" +VERSION = "0.10.0" diff --git a/docs/Browser.html b/docs/Browser.html index d80a63c09..6b9ff8f42 100644 --- a/docs/Browser.html +++ b/docs/Browser.html @@ -547,7 +547,7 @@ jQuery.extend({highlight:function(e,t,n,r){if(e.nodeType===3){var i=e.data.match(t);if(i){var s=document.createElement(n||"span");s.className=r||"highlight";var o=e.splitText(i.index);o.splitText(i[0].length);var u=o.cloneNode(true);s.appendChild(u);o.parentNode.replaceChild(s,o);return 1}}else if(e.nodeType===1&&e.childNodes&&!/(script|style)/i.test(e.tagName)&&!(e.tagName===n.toUpperCase()&&e.className===r)){for(var a=0;a diff --git a/package.json b/package.json index 9faeb93e6..403f2492a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "robotframework-playwright", - "version": "0.9.0", + "version": "0.10.0", "main": "index.ts", "author": "Mikko Korpela ", "license": "Apache-2.0",