A library for automated web browsing originally developed for Perl, there are now also Python and Ruby implementations.

learn more… | top users | synonyms

20
votes
8answers
7k views

Is there a PHP equivalent of Perl's WWW::Mechanize?

I'm looking for a library that has functionality similar to Perl's WWW::Mechanize, but for PHP. Basically, it should allow me to submit HTTP GET and POST requests with a simple syntax, and then parse ...
13
votes
1answer
10k views

Ruby Nokogiri Parsing HTML table II

I have just installed ruby+mechanize. It seems to me that it is posible in ruby nokogiri what I want to do but I do not know how to do it. What about this table? It is just part of html of vBulletin ...
12
votes
3answers
14k views

How do I use Mechanize to process JavaScript?

I'm connecting to a web site, logging in. The website redirects me to new pages and Mechanize deals with all cookie and redirection jobs, but, I can't get the last page. I used Firebug and did same ...
11
votes
3answers
4k views

Click on a javascript link within python?

I am navigating a site using python's mechanize module and having trouble clicking on a javascript link for next page. I did a bit of reading and people suggested I need python-spidermonkey and ...
14
votes
6answers
2k views

WebBrowsing in C# - Libraries, Tools etc. - Anything like Mechanize in Perl?

Looking for something similar to Mechanize for .NET... If you don't know what Mechanize is.. http://search.cpan.org/dist/WWW-Mechanize/ I will maintain a list of suggestions here. Anything for ...
3
votes
5answers
2k views

What should I do if socket.setdefaulttimeout() is not working?

I'm writing a script(multi-threaded) to retrieve contents from a website, and the site's not very stable so every now and then there's hanging http request which cannot even be time-outed by ...
2
votes
1answer
6k views

Python mechanize login to website

I'm trying to log into a website using Python and Mechanize, however, I'm running into trouble when trying to get the POST data to behave as I want. Essentially I want to replicate this using ...
5
votes
1answer
6k views

mechanize python click a button

I have a form with <input type="button" name="submit" /> button and would like to be able to click it. I have tried mech.form.click("submit") but that gives the following error: ...
1
vote
4answers
759 views

How can I use Perl to scrape a website that reveals its content with JavaScript?

I need to write a Perl script to scrape a website. The website can only be scraped with JavaScript, and the user is on Windows. I got some way with Win32::IE::Mechanize on my work machine, which ...
6
votes
1answer
5k views

How do I get Python's Mechanize to POST an ajax request?

The site I'm trying to spider is using the javascript: request.open("POST", url, true); To pull in extra information over ajax that I need to spider. I've tried various permutations of: r = ...
9
votes
7answers
5k views

Programmatic Python Browser with JavaScript

I want to screen-scrape a web-site that uses JavaScript. There is mechanize, the programmatic web browser for Python. However, it (understandably) doesn't interpret javascript. Is there any ...
8
votes
4answers
2k views

Force python mechanize/urllib2 to only use A requests?

Here is a related question but I could not figure out how to apply the answer to mechanize/urllib2: ...
9
votes
2answers
4k views

Using WWW:Mechanize to download a file to disk without loading it all in memory first

I'm using Mechanize to facilitate the downloading of some files. At the moment my script uses the following line to actually download the files... agent.get('http://example.com/foo').save_as ...
6
votes
1answer
7k views

Using Python and Mechanize to submit form data and authenticate

I want to submit login to the website Reddit.com, navigate to a particular area of the page, and submit a comment. I don't see what's wrong with this code, but it is not working in that no change is ...
6
votes
4answers
1k views

Is it possible to hook up a more robust HTML parser to Python mechanize?

I am trying to parse and submit a form on a website using mechanize, but it appears that the built-in form parser cannot detect the form and its elements. I suspect that it is choking on poorly formed ...
-1
votes
2answers
632 views

WWW::Mechanize::Firefox - installation-troubles on OpenSuse-Linux version 12.1

good day dear fellow perl-programmers. i have serious install-troubles with WWW::Mechanize::Firefox on OpenSuse 12.1 (which is a linux system that is used here in Europe): see the issues that i ...
1
vote
1answer
182 views

How do I grab a thumbnail screenshot of many websites?

I have a list of 2500 websites and need to grab a thumbnail screenshot of them. How do I do that? I could try to parse the sites either with Perl or Python, Mechanize would be a good thing. But I am ...
1
vote
1answer
1k views

How to properly use mechanize to scrape AJAX sites

So I am fairly new to web scraping. There is this site that has a table on it, the values of the table are controlled by Javascript. The values will determine the address of future values that my ...
0
votes
0answers
52 views

How can i select a value from dropdown menu which is found in a double form tag with Python mechanize?

I'm trying to select a value from a second form tag and submitting: <form action="manager.php" method="GET"> ..... <form action="manager.php" method="post">. ====here i need to select a ...
12
votes
3answers
4k views

Mechanize and BeautifulSoup for PHP?

I was wondering if there was anything similar like Mechanize or BeautifulSoup for PHP?
8
votes
1answer
6k views

How to add cookie to existing cookielib CookieJar instance in Python?

I have a CookieJar that's being used with mechanize that I want to add a cookie to. How can I go about doing this? make_cookie() and set_cookie() weren't clear enough for me. br = mechanize.Browser() ...
7
votes
1answer
10k views

BeautifulSoup HTML table parsing

I am trying to parse information (html tables) from this site: http://www.511virginia.org/RoadConditions.aspx?j=All&r=1 Currently I am using BeautifulSoup and the code I have looks like this ...
4
votes
2answers
2k views

Mechanize and Google App Engine

Has someone managed to use mechanize with Google App Engine application?
6
votes
2answers
5k views

Why does accessing a SSL site with Mechanize on Windows fail, but on Mac work?

This is the code I'm using to connect to the SSL site. require 'mechanize' a = Mechanize.new page = a.get 'https://site.com' I"m using using Ruby 1.9.3 and Mechanize 2.1pre1 + dependencies. On Mac ...
2
votes
2answers
2k views

Python Auto Fill with Mechanize

Could someone help me or share some code to auto fill a login with mechanize (http://wwwsearch.sourceforge.net/mechanize/)? I want to make a python script to log me into my favorite sites when I run ...
10
votes
4answers
5k views

Mechanize and Javascript

I want to use mechanize to simulate browsing to a web page with active javascript (including DOM Events) and AJAX, and so far I've found to way to do that... Ive looked at some python client browsers ...
4
votes
2answers
2k views

Mechanize does not see some hidden form inputs?

I want to scrape this web page using Mechanize. The form element looks like this: <form name="ctl00" method="post" action="PSearchResults.aspx?state=ME&amp;rp=" id="ctl00"> <div> ...
3
votes
1answer
1k views

Python Mechanize: how to select a dropdown list when two have the same name in web page?

The html that I'm trying to make mechanize parse is: <select id="topic_id2" name="topics[]" title="blabla" tabindex="4" class="createSelect"> here go options But then right below it there is ...
3
votes
2answers
2k views

Screenscaping aspx with Python Mechanize - Javascript form submission

I'm trying to scrape UK Food Ratings Agency data aspx seach results pages (e.,g http://ratings.food.gov.uk/QuickSearch.aspx?q=po30 ) using Mechanize/Python on scraperwiki ( ...
2
votes
4answers
3k views

Python: Clicking a button with urllib or urllib2

I want to click a button with python, the info for the form is automatically filled by the webpage. the HTML code for sending a request to the button is: INPUT type="submit" value="Place a Bid"> ...
2
votes
1answer
1k views

Use mechanize to log into megaupload

I am attempting to use the following code to log into megaupload. My question is, how do i that it successfully logged in? I print out the current URL at the end of the code, but when i run the script ...
2
votes
2answers
808 views

How can I perform a HEAD request with the mechanize library?

I know how to do a HEAD request with httplib, but I have to use mechanize for this site. Essentially, what I need to do is grab a value from the header (filename) without actually downloading the ...
-1
votes
1answer
212 views

Make [GNU-Make gcc or what ever] on OpenSuse 12.1 - how to accomplish

good dear fello Perl-Programmers, hope you are all right! l...there are a lot of problems here: how do i install the module Mechanize::Firefox on OpenSuse 12.1 It seems that bunch of dependencies ...
6
votes
3answers
430 views

reverse-lookup Digital Object Identifier given table of citations?

I have a table of citations that includes the last name of the first author, the title, journal, year, and page numbers for each citation. I have posted the first few lines of the table on google ...
4
votes
1answer
3k views

Python urlopen connection aborted - urlopen error [Errno 10053]

I have some code that uses mechanize and beautifulsoup for web scraping some data. The code works fine on a test machine but the production machine is blocking the connection. The error i get is: ...
2
votes
3answers
1k views

302s and losing cookies with urllib2

I am using liburl2 with CookieJar / HTTPCookieProcessor in an attempt to simulate a login to a page to automate an upload. I've seen some questions and answers on this, but nothing which solves my ...
2
votes
2answers
2k views

log in with browser and then ruby/mechanize takes it over?

is that even possible? what I need to pass to mechanize? With what url I can start then? I cannot manage (so far) to log into one website using mechanize so I was thinking if I can do this little ...
2
votes
2answers
10k views

mechanize (python) click on a javascript type link

is it possible to have mechanize follow an anchor link that is of type javascript? I am trying to login into a website in python using mechanize and beautifulsoup. this is the anchor link <a ...
0
votes
0answers
337 views

How to select a form with xpath in Mechanize/Python?

I am visiting a stateful web service with mechanize/Python. It confirm the referrer of a request and my browser's cookie. Since most forms of the site don't have name attribute, I'm tired to select ...
43
votes
8answers
13k views

Which is best in Python: urllib2, PycURL or mechanize?

Ok so I need to download some web pages using Python and did a quick investigation of my options. Included with Python: urllib - seems to me that I should use urllib2 instead. urllib has no cookie ...
35
votes
4answers
7k views

Is it worth learning Scrapy?

I'm a big fan of Python and currently I have taken a lot of interest in web-scraping. At the moment I rely on the elegant combination of Mechanize and Beautiful Soup to automate almost all of my ...
8
votes
4answers
8k views

Python mechanize, following link by url and what is the nr parameter?

I'm sorry to have to ask something like this but python's mechanize documentation seems to really be lacking and I can't figure this out.. they only give one example that I can find for following a ...
5
votes
3answers
6k views

Ruby mechanize post with header

I have page with js that post data via XMLHttpRequest and server side script check for this header, how to send this header? agent = WWW::Mechanize.new { |a| a.user_agent_alias = 'Mac Safari' ...
6
votes
2answers
5k views

How do you select choices in a form using Python?

I'd like to know how to select options in a form that is formatted like <td align="left"> <select name="FORM1" id="FORM1" multiple="multiple" size="5"> ...
6
votes
2answers
2k views

Mechanize for Python 3.x

is there any way how to use Mechanize with Python 3.x? Or is there any substitute which works in Python 3.x? I've been searching for hours, but I didn't find anything :( I'm looking for way how to ...
11
votes
3answers
2k views

How to test a ruby application which uses mechanize

I wrote a small program that uses Mechanize to traverse a site. I want to write tests for it, but don't want it to actually go log onto the site every time I run the tests. I would like to mock the ...
11
votes
4answers
13k views

Python mechanize - two buttons of type 'submit'

I have a mechanize script written in python that fills out a web form and is supposed to click on the 'create' button. But there's a problem, the form has two buttons. One for 'add attached file' and ...
7
votes
2answers
3k views

Getting and trapping HTTP response using Mechanize in Python

I am trying to get the response codes from Mechanize in python. While I am able to get a 200 status code anything else isn't returned (404 throws and exception and 30x is ignored). Is there a way to ...
4
votes
1answer
1k views

Submit without the use of a submit button, Mechanize

So, I started out with Mechanize, and apparently the first thing I try it on is a monkey-rhino-level high JavaScript navigated site. Now the thing I'm stuck on is submitting the form. Normally I'd ...
4
votes
2answers
1k views

How to fix encoding in Python Mechanize?

here is the sample code: from mechanize import Browser br = Browser() page = br.open('http://hunters.tclans.ru/news.php?readmore=2') br.form = br.forms().next() print br.form The problem is that ...

1 2 3