├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── docker-build.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── chrome.sh ├── chromedriver.sh ├── msedgedriver.sh └── run-tests-in-virtual-screen.sh └── test ├── browser-library.robot ├── faker.robot ├── pip-dependencies ├── main.robot └── requirements.txt ├── requests.robot ├── rerun.robot ├── selenium.robot └── timezones.robot /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/README.md -------------------------------------------------------------------------------- /bin/chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/bin/chrome.sh -------------------------------------------------------------------------------- /bin/chromedriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/bin/chromedriver.sh -------------------------------------------------------------------------------- /bin/msedgedriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/bin/msedgedriver.sh -------------------------------------------------------------------------------- /bin/run-tests-in-virtual-screen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/bin/run-tests-in-virtual-screen.sh -------------------------------------------------------------------------------- /test/browser-library.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/test/browser-library.robot -------------------------------------------------------------------------------- /test/faker.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/test/faker.robot -------------------------------------------------------------------------------- /test/pip-dependencies/main.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/test/pip-dependencies/main.robot -------------------------------------------------------------------------------- /test/pip-dependencies/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/test/pip-dependencies/requirements.txt -------------------------------------------------------------------------------- /test/requests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/test/requests.robot -------------------------------------------------------------------------------- /test/rerun.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/test/rerun.robot -------------------------------------------------------------------------------- /test/selenium.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/test/selenium.robot -------------------------------------------------------------------------------- /test/timezones.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ppodgorsek/docker-robot-framework/HEAD/test/timezones.robot --------------------------------------------------------------------------------