This project is based on Web Automation. This is started with an idea to make a bot that can attend online classes. But now this has more than that, a Bot Army that will do everything for you.
Code of Conduct
Contributing to Inaxia
- Each .py file has a specific work to perform (Instructions are provided at the start of each file)
- Fork this Repo
- Clone that forked repo into your local system
- Install
selenium
andwedriver_manager
from terminal: (in Windows)pip install selenium
pip install webdriver-manager
- Now you can use any bot you want
-
Problem 1:
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element:{...}
-
This is a race condition where the 'find element' is executing before it is present on the page. You just have to increase the no. of seconds so that the page will load properly.
-
time.sleep(x)
-> This will suspend execution of code for x seconds
-
If you like this project, don't forget to give it a ⭐