The goal of this project is to automate answering multiple choice question answering by scraping answers from other site
The packages required are:
External Downloads:Explaination to the code
Context | Explaination |
---|---|
Scrape() upto line 39 | This function scrapes the solutions for multiple choice answers |
Scrape() other lines | Automating the job of finding correct option and clicking the multiple choice button |
Difficulty | Many websites use a random string for options which are not constant for all assignments(lines 77,87...) |
Remarks | The example site I have tested has many dropdowns which require different syntax (lines 60..) |
flowchart LR
A[Scrape the required website] --> B[Load the Web Driver]
B --> C[Automate for login and finding multiplechoice options]
C --> D{answer is options}
D -- Yes --> E(Click option)
D --> |No| F(Dont Click)
This is a project to learn about bots and selnium and best use cases are for educational purposes