Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've to automate a file download activity from a website (similar to, let's say, yahoomail.com). To reach a page which has this file download link, i've to login, jump from page to page to provide some parameters like dates etc., and finally click on download link.

I am thinking of three approaches:

  1. Using WatIN and develop a windows service that periodically executes some WatiN code to traverse through the page and download the file.

  2. Using AutoIT (no much idea)

  3. Using a simple HTML parsing technique (there are several questions here eg., how to maintain a session after doing a login? how to do a logout after doing it?

share|improve this question

4 Answers

up vote 0 down vote accepted

Try a Selenium script, automated with Selenium Remote Control.

share|improve this answer

I use scrapy.org, it's a python library. It's quiet good actually. Easy to write spiders and it's very extensive in it's functionality. Scraping sites after login is available in the package.

Here is an example of a spider that would crawl a site after authentication.

class LoginSpider(BaseSpider):
    domain_name = 'example.com'
    start_urls = ['http://www.example.com/users/login.php']

    def parse(self, response):
        return [FormRequest.from_response(response,
                formdata={'username': 'john', 'password': 'secret'},
                callback=self.after_login)]

    def after_login(self, response):
        # check login succeed before going on
        if "authentication failed" in response.body:
            self.log("Login failed", level=log.ERROR)
            return

        # continue scraping with authenticated session...
share|improve this answer
What happens the url is emiting javascript like document.writeln to fill the browser document? Is Scrapy works in this case? – asyncwait Nov 20 '09 at 13:19
There are 2 scenarios that I can think of – tarasm Nov 20 '09 at 14:17
1. All of the data is in the page when the page loads, but it's in js instead of html(this is pretty unlikely). But if this is the case, then I believe you can parse it and scrapy has some functionality for as vaguely indicated here: doc.scrapy.org/intro/… – tarasm Nov 20 '09 at 14:39
2. Data is loaded with ajax. This is a lot more likely. In this case, you can figure out what requests are made to query the data and simulate those requests directly without js. – tarasm Nov 20 '09 at 14:40

I used mechanize for Python with success for a few things. It's easy to use and supports HTTP authentication, form handling, cookies, automatic HTTP redirection (30X), ... Basically the only thing missing is JavaScript, but if you need to rely on JS you're pretty much screwed anyway.

share|improve this answer

Free Download Manager is great for crawling, and you could use wget.

share|improve this answer
He is not asking for a software.. – Shoban Nov 20 '09 at 4:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.