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

learn more… | top users | synonyms

0
votes
1answer
27 views

Serch for specific information in response().read()

I'm trying to find out if form was submitted correctly using Mechanize Python library. How can I search for specific text in returned website? For example I want to check if website contain text: ...
5
votes
1answer
110 views

How do I access the StackExchange API authenticated methods from a perl script?

I'm using WWW::Mechanize. For the methods that do not require authentication, I get those as I would any other url, and then use the perl JSON module to parse out whatever data I want: my $response = ...
0
votes
1answer
152 views

Python mechanize - form submission - selecting the correct form

Trying to use Python mechanize to log in to a webpage. Since I have a problem with finding the correct form, instead of posting the URL (which the code might change) I will copy some of the code here ...
8
votes
2answers
401 views

Extremely strange Web-Scraping issue: Post request not behaving as expected

I'm attempting to programmatically submit some data to a form on our company's admin page rather than doing it by hand. I've written numerous other tools which scrape this website and manipulate ...
0
votes
1answer
63 views

Upload file with ruby mechanize

File upload does not work in the form form.file_upload_with(:name => 'image[1]').file_name = '/tmp/image.jpg' form.submit Example out of date: ...
0
votes
3answers
113 views

Finding next input element using Mechanize?

Using Mechanize, is it possible to find a phrase in the HTML of a page, for example, "email", and find the next <input* after that, and fill in that input field, and only that field?
3
votes
1answer
128 views

Store and iterate over array of links using Nokogiri/Mechanize

I'm trying to store a list of links into an array and then iterate through them. I have this rake task: https://gist.github.com/farooqyousuf/5268460 Currently, the rake task goes through a page and ...
0
votes
0answers
20 views

Python Mechanize skips the first form

This is weird, I've been weeks trying understand what I'm doing bad, with python and mechanize library: it skips the first form on a concrete page, why? I've explained it here with reproducible code: ...
2
votes
1answer
319 views

How to get Cucumber/Capybara/Mechanize to work against external non-rails site

I'm trying to do BDD on a Google App Script. I understand that in principle I should be able to use some combination of Cucumber, Capybara and Mechanize to do BDD on a non-rails external site. In ...
0
votes
1answer
92 views

How do you view the request headers that mechanize is using?

I attempting to submit some data to a from programatically. I'm having a small issue where the server is "not liking" what I'm sending it. Frustratingly, there is no error messages, or anything that ...
0
votes
0answers
42 views

How to imitate scroll down on a webpage using ruby mechanize?

I have a web page, with ajax effect - the new elements apperars, when the user scroll down the page. I want to parse all this elements, with ruby mechanize. Any suggesions?
0
votes
1answer
101 views

logging into https site using python mechanize library

I have the following code: import requests import sys import urllib2 import re import mechanize import cookielib #import json #import imp #print(imp.find_module("requests")) #print(requests.__file__) ...
1
vote
1answer
86 views

scraping image with mechanize ( ruby )

I'm trying to save image from web_page with mechanize. I use this code: @current_agent.get( image_url ).save ( save_path ) Error (I think I have a problems with timeout settings): I, ...
0
votes
0answers
75 views

web scraping using mechanize

The following code I used to download a file, produces damaged file when I run it on windows, while the pdf I get by running the code on ubuntu is readable. Can somebody give me a reason why? br = ...
1
vote
2answers
207 views

Downloading a image using Python Mechanize

I'm trying to write a Python script to download a image and set it as my wallpaper. Unfortunately, the Mechanize documentation is quite poor. My script is following the link correctly, but I'm having ...
0
votes
1answer
89 views

formating data from Text (.prn) file

I am trying to figure the best way to handle the following data. I am scraping a site and using a Text (.prn) file (a file for printing, this is the file with the data on I want, I think this would ...
0
votes
1answer
33 views

Downloading different language webpage using web python

I am trying to download a webpage (in Russian) using mechanize module in python (My computer uses only English) . I get the following error UnicodeEncodeError: 'ascii' codec can't encode characters ...
1
vote
0answers
228 views

Facebook Graph Search return proper JSON

I've been using mechanize lately to crawl around the web and do stuff. I decided that I wanted to write some algorithms to graphically show connections between my friends. Each friend will be a node ...
1
vote
3answers
63 views

Using ruby “send” on Nokogiri objects as page.send(a) where a=“at('div.class-name')”

Now, this is my HTML, <div class = 'div-of-all-names'> <div class='best-first-name'> <span itemprop='name'> Alexander </span> </div> </div> I have this ...
0
votes
0answers
19 views

Submitting registration with mechanize does not lead to right page

I am trying to submit a registration for yahoo ...
0
votes
2answers
32 views

Size of data scraped using ruby mechanize

agent = Mechanize.new url = "---------------------------" page = agent.get(url) Now, I want to know the KB(kilobytes) of data that has been used by my internet service provider to scrape that data. ...
1
vote
1answer
104 views

python, mechanize - open a text file with mechanize

I am learning mechanzie. I am trying to open a text file , the link that you would click on says Text (.prn) One problem i am having is there is only 1 form on this page and the file is not in the ...
0
votes
2answers
178 views

Nokogiri and Mechanize help (navigating to pages via div class and scraping)

I need help clicking on some elements via div class, not by text of link, to get to a page to scrape some data. Starting with the page http://www.salatomatic.com/b/United-States+125, how do I click ...
0
votes
0answers
28 views

How to accept cookie in python mechanize browser

I am trying to create a mechanize browser to fill in a form and submit. The requirement is the mechanize browser must accepting and sending cookie. br = gaemechanize.Browser() ...
0
votes
0answers
32 views

I'm submitting a form using mechanize with python and it seems to be not working. Where do I need to look?

I'm trying to perform a registration using code that looks somewhat like this: browser = mechanize.Browser() browser.open(url) assert browser.viewing_html() browser.select_form(nr=0) ...
0
votes
0answers
45 views

gaemechanize2 error: 'module' object has no attribute 'XHTMLCompatibleHeadParser'

I am trying to use gaemechanize2 with GAE and I got the error 'module' object has no attribute 'XHTMLCompatibleHeadParser' After googling, I found this file ...
0
votes
1answer
140 views

Submitting a form with mechanize HTTP Error 500

This is my first time using mechanize and I'm trying to fill out a form with mechanize Here are my browser options: br.set_handle_equiv(True) br.set_handle_gzip(True) br.set_handle_redirect(True) ...
0
votes
1answer
60 views

Filling out select control with python mechanize

I'm trying to fill out the registration for a website with python mechanize. Everything is going well but I can't figure out how to do the select controls. For example, if I'm picking my birthday ...
0
votes
0answers
62 views

Migrating writeboards away from Basecamp

So I work for a company that has been using Basecamp Classic pretty much since it was offered to the public. We have 900+ projects on there. But management has become increasingly unhappy with the ...
-1
votes
1answer
40 views

Getting names of files as saved with ruby Mechanize [closed]

I've written a scraper in ruby to download some files files off a website. It works pretty well, however I would like to get the name of the files as they are saved to disk. For example, if I were ...
0
votes
1answer
36 views

Would like help extracting from model data nested inside javascript text filtered with Mechanize

Using the following: LowEast = agent.get('https://rs.alarmnet.com/TotalConnectComfort/Device/Control/12345') puts LowEast.parser.xpath("//script[@type='text/javascript']") Returns what follows, ...
0
votes
0answers
82 views

Following mysterious link with mechanize

I'm using mechanize to crawl a website. I stumbled over a mysterious link: when I literally click on it, it takes me to the page I want; when I use br.click_link(text='Click here'), it doesn't. ...
1
vote
1answer
182 views

How to parse XML with Mechanize and XMLSimple in ruby?

I'm trying to fetch a remote XML file with Mechanize to get icecast status information. But I'm having problems to pass the XML file from Mechanize::File format to string or some XML format which ...
0
votes
1answer
107 views

How to use python.mechanize to find the url that AJAX page is redirected to after the execution?

After an AJAX page code is executed, the browser would open a different url (specified with window.location.href). How can I fetch it using mechanize? import mechanize response = ...
0
votes
1answer
84 views

What does this error mean: ValueError: unknown POST form encoding type ' ' (and how to solve it?)

I'm trying to crawl a website (http://www.dataescolabrasil.inep.gov.br/dataEscolaBrasil/home.seam) using mechanize but I am getting an error I cannot understand (and therefore cannot solve). That's ...
0
votes
0answers
66 views

Ruby Mechanize URI::InvalidURIError: bad URI(is not URI?):

URI::InvalidURIError: bad URI(is not URI?): I'm trying to automate interaction with a api-less site for legitimate reasons. :) This is my setup agent = Mechanize.new agent.user_agent_alias = ...
0
votes
1answer
142 views

How can Mechanize keep a session until I end the script manually?

There is a webpage I need open during my whole work day. I wrote a script in Ruby using Mechanize which works fine, however, the page is closed when the script ends. I found a method using an ...
3
votes
1answer
184 views

No Content-Disposition header in response from mechanize

I have to download the csv file from AdWords Billing page during the Celery task. And I have no idea what's wrong with my implementation, so need your help. Log in: browser = mechanize.Browser() ...
1
vote
1answer
63 views

Why is Mechanize not following the link

I am trying to follow a link with Mechanize but it does not seem to be working, syntax appears to be correct, am I referencing this incorrectly or do I need to do something else? Problem area ...
0
votes
1answer
125 views

XPath returning empty array using Nokogiri

I'm trying to parse a page using Nokogiri, Mechanize, and XPath, though, whatever I try, I receive an empty array. I inspected it in Chrome and got the XPath, then tried multiple ways to parse it ...
0
votes
2answers
51 views

Building a JavaScript request through Ruby

I'm sorry if the title is confusing. I'm trying to scrape my job's website to updates on my schedule. I'm using Ruby with Mechanize. I've successfully logged into my job's website, though, once ...
0
votes
1answer
191 views

Triggering onclick button with Python mechanize

So,here's the problem: I got a form that gives an info. The form has only one field and i can easily write inside anything using .select_form and .form functions of mechanize. However the submit ...
0
votes
1answer
94 views

python function behaves differently in pyramid?

I am making webapps using python on top of pyramid framework. In one of my function that utilize mechanize to do some simple web scraping, the function behaves differently when I run it as a ...
-1
votes
1answer
112 views

Submit form in Python 3

I am trying to submit a form using Python 3. In Python 2 I did the following: br=mechanize.Browser() br.set_handler_robots(False) br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; ...
0
votes
0answers
50 views

Ruby mechanize stops at 96th loop

I'm fairly new to using Ruby and Mechanize, and I'm trying to gather unique links in a list of search results. Everything seems to run fine until the script has run 96 times, then it stops, even ...
0
votes
0answers
116 views

Ruby mechanize connecting to netgear router error

I've been trying to write a small ruby script that will add a domain to the block list on my netgear router. The end goal being to add many domains blocking adverts etc. However, it is giving the ...
2
votes
2answers
76 views

Use a Login form with Mechanize

I know there are very similar posts to this on Stackoverflow but I still can't seem to figure out what is wrong with my attempt. # login to the site mech.get(base_URL) do |page| l = ...
0
votes
0answers
78 views

Python Mechanize crawl next link

i have read an article about python mechanize and tried the below code. I have opened www.google.com and searched with text "python". I tried to get all the links with link text as "python" and write ...
0
votes
0answers
98 views

Mechanize + Rails + Heroku = Errno::ETIMEDOUT , Completed 500

UPD: SOLVED. It was just a livejournal unstable work. Need help with eror. Completed 500 Internal Server Error in 21016ms Errno::ETIMEDOUT (Connection timed out - connect(2)): Code line that ...
0
votes
0answers
25 views

WWW::Mechanize::Firefox wait until perticular class loads and then store the page in .html

I am using WWW::Mechanize::Firefox and I need to store content of the page in HTML format after a particular class of form element with id='xyz' loads. Please suggest with an example.

1 2 3 4 5 24