It is an automation script developed by me by collaborating the use of two popular libraries of python, Selenium and openpyxl while learning about them
- I opened a workbook using
Openpyxllibrary - I, then also imported
Seleniumlibrary for automating my results' website using chromedriver - I created a function
result_in_excelwhich takes two parameters, one is the title_name(name of the excel sheet) and other one, website(it is the link of the website) - Here, I scraped the GPA of nineteen students as example by taking a loop between integers 1 to 20.
- In the loop, I initiated the driver using
Seleniumand went into the website which is given as a parameter.I have found the search bar of the website usingfind_element_by_namefunction and automated it. I scraped the web table's information and stored in the excel sheet which is the output of the program.

