Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 734 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 734 Bytes

Selenium Practice Application

This application was created and is shared only to support Training 360 Kft Selenium workshops

How to run

This is a simple web application. Theoratically it can run in your browser without a web server, but it is more practical and safe to run a web server on your machine.

If the application runs properly you are greeted with a home page:

assets/home.png

Pure docker container

cd into the directory there you checked out the code.

$ docker build -t t360/selenium-practice .
$ docker run -p '9999:80' t360/selenium-practice 

Docker compose way

cd into the directory there you checked out the code.

$ docker-compose up