@ -26,13 +26,27 @@ It's in the preliminary stages right now, but if you want to try your hand at ru
That will start up a docker compose setup with a Selenium standalone server and a Python runner for the test script(s). I plan to add much more here in the future, like the ability to specify which test suites to run, what URL to test at, organizing output, etc.
For now, this will just run a test that opens the browser to [werefox.cafe](https://werefox.cafe) and waits 10 seconds, then closes. Just a small smoke test.
You can also just bring up a selenium-standalone container with:
```
./run_tests.sh debug
./run_tests.sh --debug-server
```
or
```
./run_tests.sh -s
```
Once that is up, you can also debug tests with the node container with:
```
./run_tests.sh --debug-node
```
or
```
./run_tests.sh -n
```
The latter of which will simply run all the robot tests in the tests/test_suite directory.