This is a demo repository for Web Testing is Easy presentation
Launch demo test from your favorite IDE
- Install Cucumber plugin to your favorite IDE
- Launch demo test from your favorite IDE
- Start Docker
- Launch container demo test from your favorite IDE
Test Containers load browser version based on installed driver version Richard North (TestContainers creator).
Also current demo is not pulling browser images automatically.
This requires deleting all related containers if test.properties
were updated with new browser.name, browser.version or platform.name, like:
docker system prune -aOR
docker container stop $(docker container ls -aq)
docker container rm $(docker container ls -aq)
docker rmi $(docker images -a -q)OR any other suitable way of cleaning saved images.
Otherwise current demo tests will fail. Adding Dockerfile or docker-compose.yml may help.