These are the directories containing source code and tests:
Browser
, contains the Python source code for the actual Robot Framework test library.node/playwright-wrapper
, contains a wrapper for Playwright that implements the grpc protocol, implemented in TypeScript.node/dynamic-test-app
, contains a test application used in the acceptance tests, implemented in TypeScript + React.protobuf
, contains the Protocol Buffer definitions used by the communication between the library and Playwright wrapper.utest
, unit tests for the Python code.atest
, acceptance tests written with Robot Framework.
Gitpod.io is a cloud dev environemnt. It can be used with a GitHub account for free for 50h per month. This should be sufficiant for a PR.
To open the browser project in that environment just call gitpod with your development fork url as argument.
http://gitpod.io/#<your repo>
i.e. with the original repository: https://gitpod.io/#https://github.com/MarketSquare/robotframework-browser
Wait until the init is done and you can continue reading with chapter Testing
Install Python and nodejs.
N.B. The minimum Python version is 3.8.
Run python bootstrap.py
to create a virtual environment with correct dependencies.
After that, make sure to activate the virtual env before running other development commands.
python bootstrap.py
source .venv/bin/activate # On linux and OSX
.venv\Scripts\activate.bat # On Windows
Invoke is used as a task runner / build tool.
Other dependencies can be installed/updated with inv deps
. This command installs and updates both Python and nodejs dependencies.
After dependencies are installed, run inv build
to compile node code and gRPC protocol. Also this invoke command will create
Python stub file.
Run inv -l
to get list of current build commands.
There are both unit tests written with pytest and acceptance tests written with
Robot Framework. These can be run manually with inv utest
and inv atest
.
To run continuously pytests in a watch mode inv utest-watch
.
To rerun failed tests you can use inv atest-failed
The tests are also executed in a pre-push hook.
If there changes inv TypeScript side, remember to run inv build
before executing unit or acceptance tests.
Docker container builds a clean install package. This can be used to check that a built package works correctly in a clean environment without development dependencies.
- Build the container
inv docker
- Run tests mounted from host machine
inv docker-test
- See results in
atest/output
- Ensure tests and linting pass on CI
- Check that you have permissions to release on Github and PyPi
Ensure generated code and types are up to date with inv build
Set VERSION=<version>
. Version number should match to the milestone to the
issue tracker
Generate the keyword documentation with version number and add the keyword documentation to the repository main branch.
export VERSION=<version>
inv docs -v $VERSION
git add docs/versions/Browser-*.html
git commit -m "Add $VERSION keyword documentation to repository."
git push
Run inv version $VERSION
to update the version information to both Python
and Node components.
inv version $VERSION
inv build
git add Browser/version.py package.json package-lock.json setup.py docker/Dockerfile.latest_release
git commit -m "Updateversion to: $VERSION"
git push
Set GitHub user information into shell variables to ease copy-pasting the following command:
export GITHUB_USERNAME=<username>
export GITHUB_PASSWORD=<password>
Generate a template for the release notes:
invoke release-notes -w -v $VERSION -u $GITHUB_USERNAME -p $GITHUB_PASSWORD
Fill the missing details in the generated release notes template.
Make sure that issues have correct information:
- All issues should have type (bug, enhancement or task) and priority set. Notice that issues with the task type are automatically excluded from the release notes.
- Issue priorities should be consistent.
- Issue titles should be informative. Consistency is good here too, but no need to overdo it.
If information needs to be added or edited, its better to edit it in the issue tracker than in the generated release notes. This allows re-generating the list of issues later if more issues are added.
Add, commit and push:
git add docs/releasenotes/Browser-$VERSION.rst
git commit -m "Release notes for $VERSION"
git push
Update later if necessary.
Also update Browser libdoc.
- Use
inv release
to create and release artifacts and upload to PyPi - Create Github release
- Check that PyPi looks good.
- Install package from PyPi and test that it works.
- Wait that Docker build is ready and check that Docker hub looks good.
Announce new release, at least in Slack and Forum.
Python code style is enforced with ruff, isort and black. These are executed in a
pre-commit hook, but can also be invoked manually with inv lint-python
.
JS / TS code style is enforced with eslint. Lints are run in pre-commit hooks, but can be run manually with inv lint-node
.
Acceptance tests style is enforced with RoboTidy: int lint-robot
.
To run all linters by one command, use inv lint
There are 3 different interfaces that the library is targeting to use in browser automation and testing:
- User interface: Interactions with DOM elements.
- Internals of a webapp: State, Cookies, Storage, Methods.
- Requests & Responses: Interface between a browser and servers.
Python Library <--> gRPC <---> TypeScript and Playwright
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note that we have a Code of Conduct. Please familiarise yourself with this document and follow the code in all your interactions with the project.
This project uses allcontributors.org bot to list contributors in README.md. You may interact with the bot by following the bot usage guide.
- Ensure any install or build dependencies are removed before the end of the layer when doing a build.
- Update the README.md with details of changes to the interface, this includes new environment variables, exposed ports, useful file locations and container parameters.
- Increase the version numbers in any example files and the README.md to the new version that this Pull Request would represent. The versioning scheme we use is SemVer.
- You may merge the Pull Request once you have sign-off from another developer. If you do not have permission to perform the merge, you may request the reviewer merges your pull request for you.