├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst ├── selenium_extensions.rst └── usage.rst ├── requirements ├── dev.txt └── prod.txt ├── selenium_extensions ├── __init__.py ├── browser_extensions │ └── firefox │ │ └── quickjava-2.1.2-fx.xpi ├── core.py ├── drivers.py ├── exceptions.py └── helpers.py ├── setup.cfg └── setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/selenium_extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/docs/selenium_extensions.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- 1 | selenium==3.10.0 2 | PyVirtualDisplay==0.2.1 3 | -------------------------------------------------------------------------------- /selenium_extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/selenium_extensions/__init__.py -------------------------------------------------------------------------------- /selenium_extensions/browser_extensions/firefox/quickjava-2.1.2-fx.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/selenium_extensions/browser_extensions/firefox/quickjava-2.1.2-fx.xpi -------------------------------------------------------------------------------- /selenium_extensions/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/selenium_extensions/core.py -------------------------------------------------------------------------------- /selenium_extensions/drivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/selenium_extensions/drivers.py -------------------------------------------------------------------------------- /selenium_extensions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/selenium_extensions/exceptions.py -------------------------------------------------------------------------------- /selenium_extensions/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/selenium_extensions/helpers.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythad/selenium_extensions/HEAD/setup.py --------------------------------------------------------------------------------