I called the following code to visit a url and tried to print the content on that page:
import urllib2
f = urllib2.urlopen("https://www.reaxys.com/reaxys/secured/customset.do?performed=true&action=get_preparations&searchParam=1287039&workflowId=1338317532514&workflowStep=1&clientDateTime=2012-05-29%2015:17")
page = f.read()
print page
f.close()
I'm not sure if the url is accessible everywhere, so the content on that page might not be accessible to everyone.
This page sets a time constraints on how long a user can stay on the page, and after that time, a popup would show up saying the user has reached the timeout.
Here's the problem I bumped into: When I typed the url into a browser, everything opened just fine. But when I tried printing what Python read from that page, Python read the page that would only pop out when the page has reached a timeout.
I don't know what's wrong, is it Python or the website? How can I make Python read the actual content on that page?
Thanks in advance.