I have the URL / Request Header / POST contents . Is it possible for me to sent the query to the server and get the output HTML and Javascript ?
This is a AJAX stuff , but still I think we can emulate using HTTP .
Is there a convenient method for this using Python ? Or is there a GUI tool ,
that would just lee enter the all the REQUEST HEADER options and also the POST contents and get the desired output ?
On perl you have LWP::UserAgent module. Python have sth similar urllib2 (it should be in core libraries). You may also need “Beautiful Soup” for html/xml parsing.