How do I print out the cookies that Mechanized has stored?
I'm using mechanize to login into a website and then retrieve a page. I'm running into some problems and I suspect this is due to some values in the cookies. When Mechanize logs into a website I assume it stores the cookies.
How do I print out all the data stored in the cookies by开发者_如何学运维 Mechanize?
The agent has a cookies methods.
agent = Mechanize.new
page = agent.get("http://www.google.com/")
agent.cookies
agent.cookies.to_s
The cookies return is a Mechanize::Cookies object
精彩评论