├── .gitignore ├── README.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | test-one 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Python Automation using Selenium - Part of YouTube Series 2 | 3 | English Series - https://www.youtube.com/playlist?list=PLbasZIkCgHJFbX-kU4vjXsdiHVxGsJzZT 4 | 5 | Malayalam Series - https://www.youtube.com/playlist?list=PLbasZIkCgHJE6MjG959zmyV33YXEJk5SF 6 | 7 | `Navigate to each branches for the respective automation scripts.` 8 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | --------------------------------------------------------------------------------