├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── requirements.test.txt ├── selenium_respectful ├── __init__.py ├── exceptions.py └── respectful_webdriver.py ├── setup.cfg ├── setup.py └── tests └── unit └── selenium_respectful └── test_respectful_webdriver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerpentAI/selenium-respectful/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.1.0 2 | 3 | * Initial Release 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerpentAI/selenium-respectful/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerpentAI/selenium-respectful/HEAD/README.md -------------------------------------------------------------------------------- /requirements.test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerpentAI/selenium-respectful/HEAD/requirements.test.txt -------------------------------------------------------------------------------- /selenium_respectful/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerpentAI/selenium-respectful/HEAD/selenium_respectful/__init__.py -------------------------------------------------------------------------------- /selenium_respectful/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerpentAI/selenium-respectful/HEAD/selenium_respectful/exceptions.py -------------------------------------------------------------------------------- /selenium_respectful/respectful_webdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerpentAI/selenium-respectful/HEAD/selenium_respectful/respectful_webdriver.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerpentAI/selenium-respectful/HEAD/setup.py -------------------------------------------------------------------------------- /tests/unit/selenium_respectful/test_respectful_webdriver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerpentAI/selenium-respectful/HEAD/tests/unit/selenium_respectful/test_respectful_webdriver.py --------------------------------------------------------------------------------