├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── ci └── test.sh └── selenium.yaml /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/selenium-openapi/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/selenium-openapi/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/selenium-openapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/selenium-openapi/HEAD/README.md -------------------------------------------------------------------------------- /ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/selenium-openapi/HEAD/ci/test.sh -------------------------------------------------------------------------------- /selenium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerokube/selenium-openapi/HEAD/selenium.yaml --------------------------------------------------------------------------------