This is a minimal, production-friendly starter to write Robot tests in VS Code using the Playwright-based Browser library.
- Live Allure report: https://knatha.github.io/Robot_Framework_Python/
- Workflow runs: https://github.com/knatha/Robot_Framework_Python/actions
python -m venv .venv
# Windows: .venv\Scripts\activate
# macOS/Linux:
source .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
# One-time: download Playwright browsers
rfbrowser init
# Run tests
robot -d results tests
pabot -d results --processes 4 tests
# after run
allure serve results/allure
.
├─ .vscode/ # VS Code tasks & settings
├─ configs/ # optional configs
├─ libs/ # custom Python keywords
├─ resources/pages/ # page-model keywords
├─ tests/ # test suites
└─ requirements.txt