I'm trying to write a simple script to simply check a webpage for a specific value:
$("a#infgHeader").text() == "Delivered";
I'd like to automate this from a Bash script to be run at an interval. I'm also fine with using Python. I need to essentially make an HTTP request, get the response, and have a way to intelligently query the result. Is there a library which will help me with the querying part?