Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

6
  • 1
    I would use Python's zope.testbrowser for that. Commented Apr 14, 2011 at 3:19
  • 2
    Do you need to be able to use Javascript? Commented Apr 14, 2011 at 4:28
  • 1
    Related: Are there any good tools besides SeleniumRC that can fetch webpages including content post-painted by JavaScript? Commented Apr 28, 2011 at 21:53
  • 2
    Using a session is just sending the session id with each request. Either in a cookie or in GET parameter. wget and curl can use Netscape cookie file, so if your browser also use such one, may be enough to just specify it to the downloader. So, what kind of browser are you using? Commented Dec 9, 2011 at 7:35
  • 2
    No luck for a simple solution with those. Firefox and Chrome uses SQLite, Opera has a binary data file format. Looks like you will have to search for the session id and pass it manually to the downloader. Commented Dec 9, 2011 at 10:54