├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── codeql-analysis.yml │ └── pythonpackage.yml ├── LICENSE ├── README.md ├── Screenshot ├── Screenshot.py ├── __init__.py └── __pycache__ │ ├── Screenshot_Clipping.cpython-36.pyc │ └── __init__.cpython-36.pyc ├── examples ├── capture_element.py └── capture_full_page.py ├── requirements.txt ├── setup.py └── test ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── test_IEdriver.cpython-36-PYTEST.pyc └── test_chrome_driver.cpython-36-PYTEST.pyc └── test_screenshot.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/Screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/Screenshot/Screenshot.py -------------------------------------------------------------------------------- /Screenshot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/Screenshot/__init__.py -------------------------------------------------------------------------------- /Screenshot/__pycache__/Screenshot_Clipping.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/Screenshot/__pycache__/Screenshot_Clipping.cpython-36.pyc -------------------------------------------------------------------------------- /Screenshot/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/Screenshot/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /examples/capture_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/examples/capture_element.py -------------------------------------------------------------------------------- /examples/capture_full_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/examples/capture_full_page.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium 2 | pillow 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/test/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /test/__pycache__/test_IEdriver.cpython-36-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/test/__pycache__/test_IEdriver.cpython-36-PYTEST.pyc -------------------------------------------------------------------------------- /test/__pycache__/test_chrome_driver.cpython-36-PYTEST.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/test/__pycache__/test_chrome_driver.cpython-36-PYTEST.pyc -------------------------------------------------------------------------------- /test/test_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyWizards/Selenium_Screenshot/HEAD/test/test_screenshot.py --------------------------------------------------------------------------------