Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.103 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.79; '*S*': 0.00; 'subject:Python': 0.05; 'python': 0.08; 'simulate': 0.16; 'cc:addr:python-list': 0.16; 'wrote:': 0.18; 'cheers,': 0.20; 'cc:no real name:2**0': 0.21; 'trying': 0.21; 'header:In-Reply-To:1': 0.22; 'libraries': 0.24; 'received:209.85.220': 0.25; 'cc:2**0': 0.26; 'message- id:@mail.gmail.com': 0.29; 'cc:addr:python.org': 0.29; 'pm,': 0.29; 'menu,': 0.30; 'chris': 0.30; 'thu,': 0.32; 'hi,': 0.34; 'running': 0.34; 'none': 0.35; '...': 0.35; 'form,': 0.35; 'ajax': 0.37; 'but': 0.37; 'received:google.com': 0.37; 'using': 0.37; 'another': 0.37; 'received:209.85': 0.38; 'some': 0.38; 'url:org': 0.39; 'received:209': 0.39; 'everyone': 0.39; 'application': 0.40; 'user': 0.40; 'browser': 0.62; 'website': 0.65; 'visit': 0.67; 'sender:addr:chris': 0.84; 'plugins': 0.91; 'redirect': 0.91; 'subject:activity': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rebertia.com; s=google; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=SuUp60Hv9hwAzBssjp3L7vPdfhrocKan2bOI8wwsP00=; b=dyV9VUa9yX5dtWMJkfAB9W2nIw8t2qhxRclEvEZ+Kf6QVvL3R6I1Rpgs70E/Py/iyp qp2Grr+cmWG2uW+tan5ieJHvgnVsNtGkTOZ0wtnyBOoofU6kJGtk465TRdlb6Dwc3PQa C1h66zQUNcdKxHP8TS5JKz3TYsoH2DlVdHsak= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=SuUp60Hv9hwAzBssjp3L7vPdfhrocKan2bOI8wwsP00=; b=mZoZTaEANwtdSUJxlKmtnp8be+Kt6+JJm4H6jSsDZlzpf0SMYddhDKtbaWki1VTu3X S+VRkgcuyS2JazZcKrHq829iFgGJ3tDu07Wgf8hPKvNCwbZq4kS/GvRo6gp24I0LXHyN fh2uOjGhcac3NxqgX3eOZw7677qijLQRsRQwNualv7K90lFB+Nr1GVZc/XdPW/dDZCfC +482QDlj56gOAgHp/LzUNQqQNvssm/URjE67x2qXPG/AA+930CkZjJ1h/cWyr0MVj1/Z cvBOpgkG8SWXgAtQRauA6waYosI1yTjo8SzWwUpkRUdIi5bZuSnBP9U8OpkrgXgUs+EB Yo8Q== MIME-Version: 1.0 Sender: chris@rebertia.com In-Reply-To: <214c4c0c-f8ec-4030-946b-8becc8e1aa9c@ur9g2000pbc.googlegroups.com> References: <214c4c0c-f8ec-4030-946b-8becc8e1aa9c@ur9g2000pbc.googlegroups.com> Date: Thu, 15 Mar 2012 19:54:03 -0700 X-Google-Sender-Auth: eBolgQaU4wAk_8D9-5sTzDuRjXQ Subject: Re: Python simulate browser activity From: Chris Rebert To: choi2k Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQnYatW2LCM0jNyinQrlISkVVvzOgW1MGIAfhZ9VQIzjKEkhatR8GWtU4Yi3QQV4HuJRQhW0 Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1331866452 news.xs4all.nl 6852 [2001:888:2000:d::a6]:34781 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:21733 On Thu, Mar 15, 2012 at 7:23 PM, choi2k wrote: > Hi, everyone > > I am trying to write a small application using python but I am not > sure whether it is possible to do so.. > The application aims to simulate user activity including visit a > website and perform some interactive actions (click on the menu, > submit a form, redirect to another pages...etc) > I have found some libraries / plugins which aims to simulate browser > activity but ... none of them support AJAX request and/or running > javascript. Did you look at Selenium? http://seleniumhq.org/ Cheers, Chris