Ok so I just want to know what my best plan of action is here and what tools/frameworks would I need:
1. Log onto webpage
2. Navigate to desired page which would require clicking on buttons and then filling in text boxes for searching
3-4 On loop
3. Grab the html from the page and store in local txt file
4. Analyze the text file and if string matches certain criteria, notify me via email that a match has been found
My though process was to use scrapy to get the data, but I wasnt sure how to navigate the page and provide input(such as login credentials and button navigation) Which made me want use selenium(use it at work so I'm fairly comfortable with it) but I'm not sure if that's the best way.
Thanks for any guidance!