I would like to know what is available for scripting browsers from
Python.
For instance, webbrowser.open let me to perform GET requests, but I
would like
to do POST requests too. I don't want to use urllib to emulate a
browser, I am
interested in checking that browser X really works as intended with my
application. Any suggestion?
Michele Simionato 14 2648
On 31 May 2005 00:52:33 -0700, Michele Simionato
<mi***************@gmail.com> wrote: I would like to know what is available for scripting browsers from Python. For instance, webbrowser.open let me to perform GET requests, but I would like to do POST requests too. I don't want to use urllib to emulate a browser, I am interested in checking that browser X really works as intended with my application. Any suggestion?
I don't know of anything cross platform, or even cross browser, but on
Windows, IE can be automated via COM - see
<http://www.mayukhbose.com/python/IEC/> for example - and other
browsers should be able to be automated either via COM or by driving
the GUI with WATSUP (<http://www.tizmoi.net/watsup/intro.html>).
--
Cheers,
Simon B, si***@brunningonline.net, http://www.brunningonline.net/simon/blog/
Michele Simionato wrote: I would like to know what is available for scripting browsers from Python. For instance, webbrowser.open let me to perform GET requests, but I would like to do POST requests too. I don't want to use urllib to emulate a browser, I am interested in checking that browser X really works as intended with my application. Any suggestion?
For Konqueror running on KDE, you can use DCOP to control the browser.
There are a couple of different, but related, Python modules that you
can use to do this. See the following page for more information: http://developer.kde.org/language-bindings/python/
I believe this approach has been used quite successfully with other
KDE applications: http://www.kde-apps.org/content/show.php?content=18638
You should still be able to automate the browser with just popen2 and
the "dcop" command line tool if you are really desperate. I once had
to resort to this ad-hoc approach in the distant past but, these days,
I'd recommend one of the above modules instead.
David
Simon Brunning wrote: On 31 May 2005 00:52:33 -0700, Michele Simionato <mi***************@gmail.com> wrote:
I would like to know what is available for scripting browsers from Python.
I don't know of anything cross platform, or even cross browser, but on Windows, IE can be automated via COM - see <http://www.mayukhbose.com/python/IEC/> for example
Also http://pamie.sourceforge.net/
Kent
On Tue, 31 May 2005 00:52:33 -0700, Michele Simionato wrote: I would like to know what is available for scripting browsers from Python. For instance, webbrowser.open let me to perform GET requests, but I would like to do POST requests too. I don't want to use urllib to emulate a browser, I am interested in checking that browser X really works as intended with my application. Any suggestion?
Michele Simionato
ClientForm http://wwwsearch.sourceforge.net/ClientForm/
I use it for automation of POSTs of entire image directories to
imagevenue.com/imagehigh.com/etc hosts.
Works above urllib2.
You access forms by name or indice, then you access HTML elements as a
dict attribute of the form.
Support file upload within POST.
The only drawback I've found are:
- does not support nested forms (since forms are returned in a list)
- does not like ill-formed HTML (Uses HTMLParser as the underlying parser.
you may pass a parser class as parameter (say SGMLParser for greater
acceptance of stupid HTML code) but it's tricky because there is no well
defined parser interface)
Hope this helps.
This looks interesting, but I need an example here. What would be the
command
to open Konqueror to a given page and to post a form with given
parameters?
kde.org has tons a material, but I am getting lost and I don't find
anything
relevant to my simple problem.
Michele Simionato
Simon Brunning wrote: On 31 May 2005 00:52:33 -0700, Michele Simionato <mi***************@gmail.com> wrote: I would like to know what is available for scripting browsers from Python.
I don't know of anything cross platform, or even cross browser, but on Windows, IE can be automated via COM
On OS X you can use appscript
<http://freespace.virgin.net/hamish.sanderson/appscript.html>, either
directly via the application's scripting interface if it has one or
indirectly by manipulating its GUI via GUI Scripting.
HTH
I wanted to have a Python program make my browser do a POST. I am using
Firefox on Linux.
Here's what I did:
* Prepare a HTML page on the local disk that looks like this:
<html><body onload="document.forms[0].submit()">
<div style="display: none">
<form method=post accept-charset="utf-8" action="http://www.example.com/cgi-bin/example.cgi">
<input name=field1 value=value1>
<input name=field2 value=value2>
<textarea name=text>....</textarea>
<input type=submit name=blah>
</form>
</div>
Submitting form...
</body>
</html>
* Point the webbrowser at it. In my case, the webbrowser module didn't work immediately so I
just used os.system() with a hardcoded browser name for it
Jeff
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQFCncHiJd01MZaTXX0RAolzAKCKjs0pkEu86sQxY4yB83 fU71fECACfRyag
0wuz8b0pvJHWC3i90MhZG7k=
=4OPn
-----END PGP SIGNATURE-----
Olivier Favre-Simon <ol*****************@club-internet.fr> writes: On Tue, 31 May 2005 00:52:33 -0700, Michele Simionato wrote:
I would like to know what is available for scripting browsers from Python.
[...] ClientForm http://wwwsearch.sourceforge.net/ClientForm/
I use it for automation of POSTs of entire image directories to imagevenue.com/imagehigh.com/etc hosts.
This doesn't actually address what the OP wanted: it's not a browser.
The only drawback I've found are: - does not support nested forms (since forms are returned in a list)
Nested forms?? Good grief. Can you point me at a real life example
of such HTML? Can probably fix the parser to work around this.
- does not like ill-formed HTML (Uses HTMLParser as the underlying parser. you may pass a parser class as parameter (say SGMLParser for greater acceptance of stupid HTML code) but it's tricky because there is no well defined parser interface)
Titus Brown says he's trying to fix sgmllib (to some extent, at least).
Also, you can always feed stuff through mxTidy.
I'd like to have a reimplementation of ClientForm on top of something
like BeautifulSoup...
John
Michele Simionato wrote: This looks interesting, but I need an example here. What would be the command to open Konqueror to a given page and to post a form with given parameters?
Launch Konqueror, note the process ID (pid), and use the dcop command
line tool to open the page at a specified URL:
dcop konqueror-<pid> konqueror-mainwindow#1 openURL <URL>
Unfortunately, I don't think it's possible to manipulate the page
purely with DCOP, even with Python bindings, although I hope that
someone can prove me wrong.
kde.org has tons a material, but I am getting lost and I don't find anything relevant to my simple problem.
A quick search revealed this discussion about using JavaScript with
DCOP: http://lists.kde.org/?l=kfm-devel&m=103661664427286&w=2
This might be the best you can hope for with scripting outside the
browser. I've been trying to enable support for in-browser scripting
with Konqueror using KPart plugins, but this requires up to date
versions of sip, PyQt and PyKDE: http://www.riverbankcomputing.co.uk
If you want to pursue that route, let me know and I'll try and tidy up
what I have.
David
On Wed, 01 Jun 2005 22:27:44 +0000, John J. Lee wrote: Olivier Favre-Simon <ol*****************@club-internet.fr> writes:
On Tue, 31 May 2005 00:52:33 -0700, Michele Simionato wrote:
> I would like to know what is available for scripting browsers from > Python. [...] ClientForm http://wwwsearch.sourceforge.net/ClientForm/
I use it for automation of POSTs of entire image directories to imagevenue.com/imagehigh.com/etc hosts.
This doesn't actually address what the OP wanted: it's not a browser.
Yep. Didn't read with sufficient care. He really wants scripting not
webscraping.
The only drawback I've found are: - does not support nested forms (since forms are returned in a list) Nested forms?? Good grief. Can you point me at a real life example of such HTML? Can probably fix the parser to work around this.
What I mean is: The parser does not detect a missing </form>, so
thinks that there are nested forms, and raises a ParseError.
Browsers have an easier task at spotting non-matching form tags, because
they can use matching table or div tags around to imply that the form is
closed (DOM approach).
Not easy with a SAXish approach like HTMLParser.
I don't mean nested forms should be supported, they are crap (is this even
legal code ?)
- does not like ill-formed HTML (Uses HTMLParser as the underlying parser. you may pass a parser class as parameter (say SGMLParser for greater acceptance of stupid HTML code) but it's tricky because there is no well defined parser interface)
Titus Brown says he's trying to fix sgmllib (to some extent, at least).
Also, you can always feed stuff through mxTidy.
I'd like to have a reimplementation of ClientForm on top of something like BeautifulSoup...
John
When taken separately, either ClientForm, HTMLParser or SGMLParser work
well.
But it would be cool that competent people in the HTML parsing domain join
up, and define a base parser interface, the same way smart guys did with
WSGI for webservers.
So libs like ClientForm would not raise say an AttributeError if some
custom parser class does not implement a given attribute.
Adding an otherwise unused attribute to a parser just in case one day it
will interop with ClientForm sounds silly. And what if ClientForm changes
its attributes, etc.
No really, whatever the chosen codebase, a common parser interface would
be great.
On 31 May 2005 00:52:33 -0700, Michele Simionato
<mi***************@gmail.com> wrote: I would like to know what is available for scripting browsers from Python. For instance, webbrowser.open let me to perform GET requests, but I would like to do POST requests too. I don't want to use urllib to emulate a browser, I am interested in checking that browser X really works as intended with my application. Any suggestion? Michele Simionato
I use pbp, http://pbp.berlios.de/
It's essentially a python commandline webbrowser suitable for testing
websites. It makes it easy to do things like:
go http://user:pass@mywebsite/secure/
follow Admin
follow Configure
formvalue config max_widgets 300
submit config
in a script, and then run that script at your lesuire.
As it's designed for testing, everything you do is essnetial an
assertion, so if anything fails it fails spectacularly with debug
messages and non-zero exit codes. You can also load python code up so
you can do arbitary stuff.
--
Stephen Thorne
Development Engineer
Olivier Favre-Simon <ol*****************@club-internet.fr> writes:
[...] I'd like to have a reimplementation of ClientForm on top of something like BeautifulSoup...
John When taken separately, either ClientForm, HTMLParser or SGMLParser work well.
But it would be cool that competent people in the HTML parsing domain join up, and define a base parser interface, the same way smart guys did with WSGI for webservers.
Perhaps. Given a mythical fixed quantity of volunteer coding effort I
could assign to any HTML parsing project, I'd really prefer that
somebody separated out the HTML parsing, tree building and DOM code
from Mozilla and/or Konqueror.
So libs like ClientForm would not raise say an AttributeError if some custom parser class does not implement a given attribute.
Adding an otherwise unused attribute to a parser just in case one day it will interop with ClientForm sounds silly. And what if ClientForm changes its attributes, etc.
[...]
I'm sorry, I didn't really follow that at all.
What I hoped to get from implementing the ClientForm interface on top
of something like BeautifulSoup was actually two things:
1. Better parsing
2. Access to a nice, and comprehensive, object model that lets you do
things with non-form elements, and the ability to move back and
forth between ClientForm and BeautifulSoup objects. I already did
this for the HTML DOM with DOMForm (unsupported), but for various
reasons the implementation is horrid, and since I no longer intend
to put in the effort to support JavaScript, I'd prefer a nicer tree
API than the DOM.
John
[Michele Simionato] I would like to know what is available for scripting browsers from Python.
[...] to do POST requests too. I don't want to use urllib to emulate a browser, I am interested in checking that browser X really works as intended with my application. Any suggestion?
[...]
[Stephen Thorne] I use pbp, http://pbp.berlios.de/
[...]
Again, that doesn't do what Michele wants.
John This discussion thread is closed Replies have been disabled for this discussion. Similar topics
4 posts
views
Thread by The_Incubator |
last post: by
|
1 post
views
Thread by PiedmontBiz |
last post: by
|
41 posts
views
Thread by Richard James |
last post: by
|
22 posts
views
Thread by Ajay |
last post: by
|
33 posts
views
Thread by Quest Master |
last post: by
|
6 posts
views
Thread by Wolfgang Keller |
last post: by
|
15 posts
views
Thread by Birahim FALL |
last post: by
|
8 posts
views
Thread by Nagarajan |
last post: by
|
12 posts
views
Thread by jim |
last post: by
| | | | | | | | | | |