├── .gitignore ├── LICENSE ├── README.md ├── chatgpt_selenium_automation ├── __init__.py └── handler.py ├── requirements └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michelangelo27/chatgpt_selenium_automation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michelangelo27/chatgpt_selenium_automation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michelangelo27/chatgpt_selenium_automation/HEAD/README.md -------------------------------------------------------------------------------- /chatgpt_selenium_automation/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /chatgpt_selenium_automation/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michelangelo27/chatgpt_selenium_automation/HEAD/chatgpt_selenium_automation/handler.py -------------------------------------------------------------------------------- /requirements: -------------------------------------------------------------------------------- 1 | selenium==4.9.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michelangelo27/chatgpt_selenium_automation/HEAD/setup.py --------------------------------------------------------------------------------