Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #21736
| Path | csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!newsfeed.eweka.nl!eweka.nl!feeder3.eweka.nl!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!newsgate.cistron.nl!newsgate.news.xs4all.nl!194.109.133.85.MISMATCH!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <malaclypse2@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.043 |
| X-Spam-Evidence | '*H*': 0.91; '*S*': 0.00; 'automate': 0.05; 'subject:Python': 0.05; 'scripts': 0.09; 'gui': 0.13; 'jython': 0.16; 'neat': 0.16; 'simulate': 0.16; 'wrote:': 0.18; 'header:In- Reply-To:1': 0.22; 'received:209.85.220': 0.25; 'message- id:@mail.gmail.com': 0.29; 'pm,': 0.29; 'url:)': 0.29; 'menu,': 0.30; 'chris': 0.30; 'pretty': 0.31; 'thu,': 0.32; 'to:addr :python-list': 0.35; 'form,': 0.35; 'with.': 0.37; 'received:google.com': 0.37; 'using': 0.37; 'another': 0.37; 'received:209.85': 0.38; 'uses': 0.38; 'some': 0.38; 'url:org': 0.39; 'difficult': 0.39; 'received:209': 0.39; 'application': 0.40; 'user': 0.40; 'might': 0.40; 'to:addr:python.org': 0.40; 'website': 0.65; 'visit': 0.67; 'redirect': 0.91; 'subject:activity': 0.91 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=AyWooQ4LTLNfhRlozcNH69g3nApBqpzlZN0Q8Jd6oMw=; b=OFdpPakrnptU1fsKWeOE0E092vBWL2t5XLiATvs99v25VzAk4YVPU9o/ShoZtq/QoT 8/FKgMUHzlGuW155Oa7U6/WlFE8smL7IDHKYOkJGo1qWcf7rutyg2/xIYcfba3GuSyic x08XdrPkOrbpMS7ZP7SbBlEg1YCtqrtW84YVBjv3EzqctIgmlTUAJtZ7rW+sMIDbhWqF HmkgQ7rRH45wnL2BrcJMVTcP6ToZSuTFMwDBA6qG9+6tGXmVk4LnGBJZsZ+X8WohclG9 K7hcwitEsPnhzJAzUqEPp1snfjm7YioYWme0eiXaPDlimF4zvUeDsLPQxmpMyqnBJ2dv h0pQ== |
| MIME-Version | 1.0 |
| In-Reply-To | <CAMZYqRRzyRyKFLadX4CvNxoEzs7m6zSbid1SEoiggQL2PG7_xw@mail.gmail.com> |
| References | <214c4c0c-f8ec-4030-946b-8becc8e1aa9c@ur9g2000pbc.googlegroups.com> <CAMZYqRRzyRyKFLadX4CvNxoEzs7m6zSbid1SEoiggQL2PG7_xw@mail.gmail.com> |
| Date | Thu, 15 Mar 2012 23:44:29 -0400 |
| Subject | Re: Python simulate browser activity |
| From | Jerry Hill <malaclypse2@gmail.com> |
| To | python-list@python.org |
| Content-Type | text/plain; charset=UTF-8 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.717.1331869471.3037.python-list@python.org> (permalink) |
| Lines | 16 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1331869471 news.xs4all.nl 6892 [2001:888:2000:d::a6]:45254 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:21736 |
Show key headers only | View raw
On Thu, Mar 15, 2012 at 10:54 PM, Chris Rebert <clp2@rebertia.com> wrote: > On Thu, Mar 15, 2012 at 7:23 PM, choi2k <rex.0510@gmail.com> wrote: >> 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) > > Did you look at Selenium? > http://seleniumhq.org/ You might also be interested in Sikuli (http://sikuli.org/), which uses Jython to write scripts to automate other programs using screenshots. It's pretty neat if you need to automate a GUI that is otherwise difficult to deal with. -- Jerry
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Python simulate browser activity choi2k <rex.0510@gmail.com> - 2012-03-15 19:23 -0700 Re: Python simulate browser activity Chris Rebert <clp2@rebertia.com> - 2012-03-15 19:54 -0700 Re: Python simulate browser activity Jerry Hill <malaclypse2@gmail.com> - 2012-03-15 23:44 -0400 Re: Python simulate browser activity Roy Smith <roy@panix.com> - 2012-03-16 08:57 -0400 Re: Python simulate browser activity Chris Angelico <rosuav@gmail.com> - 2012-03-17 06:20 +1100 Re: Python simulate browser activity NA <NA> - 2012-03-16 21:51 -0400
csiph-web