An open-source Test Automation framework with Docker and Kubernetes integration.
Docker Desktop Instructions
Helm Instructions
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python3 -m venv venv
.\venv\Scripts\activate
pip install -r requirements.txt
cd app
helm install website .
kubectl -n default get service website-cortexaai
docker compose up --scale chrome=2
http://localhost:4444/ui
export BROWSER=chrome
URL=http://localhost:<PORT>
python -m unittest discover
$env:BROWSER="chrome"
$env:URL="http://host.docker.internal:<PORT>"
python -m unittest discover
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.