Hi,
every day I need to go to a specific site, send my credential, navigate 2 or 3 pages, make some decisions, submitting some forms and then get some results.
I was thinking to automate all the session with a kind of program to "play" a web session and get results, like this:
get_this_page_to_variable a="
http://myurl.com", username=stefano, password=stefano
if a contains "to authorize" then
get_this_page_to_variable b="
http://myurl.com/auth_page", var1=val1, var2=val2
endif
get...
post...
I saw that AutoHotKey has the url_download_to_file but it is not enough. I tried java or c# but I did not want a complex programming language or interface.
Does anyone know if there is a tool/scripting language/anything to automate web sessions (maybe keeping track of cookies?)
Bye,
/Stefano