https://github.com/training360/selenium-py-peldatar
https://github.com/training360/selenium-py-peldatar
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/training360/selenium-py-peldatar
- Owner: Training360
- License: other
- Created: 2021-04-19T12:00:29.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-11T07:30:36.000Z (almost 5 years ago)
- Last Synced: 2025-04-13T19:52:32.083Z (about 1 year ago)
- Language: HTML
- Size: 957 KB
- Stars: 1
- Watchers: 2
- Forks: 98
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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:

### Pure docker container
`cd` into the directory there you checked out the code.
```bash
$ docker build -t t360/selenium-practice .
```
```bash
$ docker run -p '9999:80' t360/selenium-practice
```
### Docker compose way
`cd` into the directory there you checked out the code.
```bash
$ docker-compose up
```