Web page to be tested by automated test tooling
This very simple webpage and it's functionality is created to serve as a test webpage to be tested by test automation frameworks. The following frameworks cover the functionality with automated tests:
To run this project locally you need to have the following installed on your system:
- Docker
The webpage runs inside a Nginx webserver. The official Nginx Docker image is used.
All html, css and javascript in the html folder in this project is mounted to the html folder in the Docker container. This means all changes made in the local html folder are immediately (after save and refresh of the browser) in the webpage.
To run the webpage run the following command:
# make sure to update the local folder for the mount
$ docker run --name nginx-webserver -v //C/Development/Github/awesome-test-webpage/html:/usr/share/nginx/html -d -p 8081:80 nginx
Open http://localhost:8081
in your browser.