├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENCE.txt ├── README.md ├── robotframework ├── Dockerfile ├── requirements.txt ├── run-rf-tests.sh └── run.sh └── tests ├── ChromeConfiguration.py ├── bing.robot └── google.robot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/README.md -------------------------------------------------------------------------------- /robotframework/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/robotframework/Dockerfile -------------------------------------------------------------------------------- /robotframework/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/robotframework/requirements.txt -------------------------------------------------------------------------------- /robotframework/run-rf-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/robotframework/run-rf-tests.sh -------------------------------------------------------------------------------- /robotframework/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/robotframework/run.sh -------------------------------------------------------------------------------- /tests/ChromeConfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/tests/ChromeConfiguration.py -------------------------------------------------------------------------------- /tests/bing.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/tests/bing.robot -------------------------------------------------------------------------------- /tests/google.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yleisradio/docker-robotframework/HEAD/tests/google.robot --------------------------------------------------------------------------------