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
64 views

enable checkbox with id only

I want to fill a HTML form, I am using mechanize module of python. my HTML code is like that for checkbox and dropdown is : <div id="post_cd"> <input role="checkbox" id="cd_info" ...
1
vote
3answers
158 views

Click an image which has a specific name

How do I click an image like below using Python mechanize? <a href="..."><img name="next" id="next" src="..."></a> I know the name and id of the image I want to click to. I need ...
1
vote
1answer
267 views

Mechanize: submitting form but not loading new page to see results

Okay, so I'm starting to get a little frustrated. I've spent most of a day trying to figure out why my script is not working - both on github and here. It should be fairly simple. Mechanize load a ...
0
votes
1answer
53 views

Best place to learn Mechanize for python?

Having trouble learning Mechanize for Python with some googling. Anyone have any resources that they can personally recommend, that aren't just google results? It'd help dramatically.
0
votes
1answer
110 views

check boxes and text area with mechanize

I have a html form with java-script which contain text fields,drop-down menu and check boxes. I want to fill that html form with python code. Form has two button one is "Apply" and second is "submit ...
1
vote
2answers
64 views

Unexplained Inconsistency when Downloading an XLS file with Ruby Mechanize after redirect

I have a script that visits fcc.gov, then clicks a link which triggers a download: require "mechanize" docket_number = "12-268" #"96-128" url = ...
0
votes
3answers
73 views

Web Scraping Returning Empty String

I wrote some code to return and display the five most recent posts on this website. Yet when I run the code using a for loop, an empty string is returned. The code is below: require 'rubygems' ...
3
votes
1answer
217 views

How do I scrape URLs from a JavaScript 'onclick window.open' event?

I am trying to scrape URLs from a page that uses JavaScript. Instead of having links on the page, they created onClick events for a number of table rows, whereby, when you click the row, it takes you ...
0
votes
1answer
69 views

406 Error with Mechanize

I'm getting a 406 error with Mechanize when trying to open a URL: for url in urls: if "http://" not in url: url = "http://" + url print url try: page = mech.open("%s" % ...
3
votes
3answers
268 views

LoadError: no such file to load — mechanize

Any suggestions why this doesn't work? [app (master)]$ gem install mechanize Successfully installed mechanize-2.5.1 1 gem installed [app (master)]$ rails c Loading development environment (Rails ...
1
vote
1answer
223 views

Use mechanize to submit form without control name

I'm trying to use mechanize for python to submit a form but the form control I need to fill in doesnt have a name assigned to it. <POST https://sample.com/anExample multipart/form-data ...
0
votes
1answer
61 views

Download an image from a website into a CouchDB attachment through Rails without local storage?

I'm trying to scrape some websites and store the images as CouchDB attachments. In order to expedite the process I don't want to store the images locally at all. The relevant gems I'm already using ...
0
votes
1answer
66 views

Perl, using Mechanize-Firefox, how can I expand a frame whilst remaining within the larger frameset.

I'm scraping a website that uses frames extensively. Within each frame is a piece of javascript like so: function CheckUniqName(uniq) { if (top.name != uniq) { top.window.location.assign("<a ...
1
vote
2answers
180 views

Using Ruby and Mechanize to fill in a remote login form mystery

I am trying to implement a ruby script that will take in a username and password, then proceed to fill in the account details on a login form on another website and return the then follow a link and ...
0
votes
1answer
48 views

Mechanize and invisible search form

I'm trying to perform search on some website using Mechanize but I can't submit a search form because mechanize does not see any forms. page.form returns nil and page = agent.get returns just ...
0
votes
0answers
119 views

Submit using python mechanize with input tpe=“image”

I want to click/submit a button which is of type image <input type="image" onclick="javascript:return showhide();" src="IMAGES/login.gif" name="submit"> I tried the following mech = ...
0
votes
0answers
77 views

How can I get Mechanize::Firefox to open frames in a website that restricts new tabs?

I know that Mechanize treats frames like links, and in the past I have been successful in scraping pages by following said links when I arrive at pages built with frames. Currently I am browsing a ...
2
votes
1answer
76 views

Ruby Mechanize - can't get specific selectlist

I know this is working on other form/selectlist I've tried. This particular one doesn't appear to be ajax. Can anyone shed light on this? # encoding: UTF-8 require 'rubygems' require 'mechanize' ...
0
votes
1answer
83 views

Problems scraping pages with JavaScript function in python

I'm stuck with a python problem, look. I have to scrap a page that has JS functions, but that's not the real problem, the real problem is that the information I need is provided by the function.. So ...
0
votes
1answer
153 views

Filling and submitting textarea with Mechanize in Python

Okay, so I'm using Mechanize to log into Google groups and manually add a member to the group. I've been able to successfully log in and navigate to the appropriate page. On this page there is a ...
0
votes
3answers
229 views

Python Mechanize to check if a server is available

I'm trying to write a script which will read a file containing some urls and then open a browser instance using mechanize module. I'm just wondering how I can do so if some url does not exist or if ...
1
vote
1answer
68 views

Server doesn't see the cookies

What're the reasons that the server doesn't actually recognize the cookie I set using WWW::Mechanize in the code below? #!/usr/bin/perl use strict; use warnings; use HTTP::Cookies; use ...
2
votes
3answers
364 views

Filling out form in perl with WWW::Mechanize module

I am creating a script that logs into a web form in perl using the mechanize module and i'm getting the error : syntax error at /home/arty/scripts/gmail_pw_chngr.pl line 18, near "button" Execution of ...
0
votes
1answer
120 views

how do i write a program to click a particular link in Python

My program takes an user input and searches it through a particular webpage . Further i want it to go and click on a particular link and then download the file present there . Example : The webpage ...
4
votes
3answers
94 views

Autofill if name = hash

I am trying to autofill a text box(multiple boxes) in a form using mechanize in python, but the name of the box(es) is a hash, so I can't automate the input like br.form['name'] = 'blah' since the ...
1
vote
1answer
288 views

Accepting and Sending Cookies with mechanize

I need to fill in a login form on a webpage that requires cookies and get some information about the resultant page. Since this needs to be done at very weird hours at night, I'd like to automate the ...
0
votes
0answers
98 views

Rails html.erb output formatting - getting a url out of a result and making a link

Basically, the code below works great. I execute a Mechanize crawl through my search.html.erb web page and get proper results on my results.html.erb web page. However, I'm having trouble figuring out ...
1
vote
1answer
42 views

How to extract the URL from the last column of of a table, where the row contains certain words, using Mechanize

I'm trying to automate some tedious web tasks for an internal ticketing system I maintain. There is a page, with an automatically generated table full of mail server configurations. Each row is for a ...
0
votes
1answer
122 views

Using mechanize to check for div with similar but different names

Currently I'm doing the following: if( firstTemp == true ) total = doc.xpath("//div[@class='pricing condense']").text else total = doc.xpath("//div[@class='pricing ']").text end I'm ...
0
votes
2answers
32 views

Trying to subclass mechanize's Browser and create a login method

so that this way all I have to do is type browser = MyBrowser() browser.login() to get my python scripts to log in in the future. Here's what I have so far: import mechanize class ...
1
vote
0answers
107 views

Net::SSL is breaking my Sys::SigAction timeout_call function

After using Sys::SigAction timeout_call for timeouts from the answer in my previous question (note: this time im using WWW::Mechanize instead of WWW::Mechanize::Timed), my 60 second timeout alarms ...
0
votes
0answers
54 views

Rails not adding new models to DB via rake script, can't figure out why

The Rake Script desc "Update departments and classes listing" task :update_classes => :environment do require 'rubygems' require 'mechanize' require 'nokogiri' def getSubject(agent, subject) ...
0
votes
1answer
74 views

Mechanize: Only following links with certain element in URL

Learning Mechanize: I am wanting to crawl through a news site and only follow the links that have a ?sid in the link.. I cannot seem to find much on Mechanize documentation. import mechanize br = ...
0
votes
0answers
129 views

How to open Firefox with Python and run an iMacros script?

I've been trying to windows extensions for python to run the iMacros script, however I receive a really weird error that I believe is the same as the error that occurred in this stackoverflow ...
1
vote
1answer
123 views

Python mechanize with NTLM getting AttributeError: HTTPResponse instance has no attribute '__iter__'

I am trying to access a site that's secured with NTLM authentication using python-ntlm and mechanize but I am getting this error. File "build/bdist.macosx-10.6-universal/egg/mechanize/_mechanize.py", ...
0
votes
0answers
29 views

installing mechanize on VPS

root@cowboomer:/home/ryan/public_html# gem install mechanize -V GET http://rubygems.org/latest_specs.4.8.gz 302 Moved Temporarily GET http://production.s3.rubygems.org/latest_specs.4.8.gz 304 ...
0
votes
2answers
58 views

How do I make python try the next URL in my file if the current one returns a 404?

I'm having a problem figuring out what code I need to create to make to make python try the next url in my csv file each url is on a line like this: ...
0
votes
0answers
108 views

What exactly does 'window.location.replace' do / how to replicate it in mechanize?

I'm interfacing with a site that implements delaying a page-load with client-side JavaScript. Basically, a form is submitted on PageA.asp, and instead of the data going to PageB.asp, it goes to ...
1
vote
2answers
175 views

Mechanize Page.Form.Action POST for multiple INPUT tags with same NAME / VALUE

Need to post to existing web page (no login required) and post parameters for submit where multiple submit forms tags exist and contains identical tags with the same NAME and VALUE tags; for example, ...
0
votes
2answers
304 views

How to submit javascript form with Mechanize?

I have mechanize script that is done logging in. After log in. The page shows a redirect first before going into the main logged in page. Executing redirect() brings me back to the login page. Why? ...
1
vote
1answer
88 views

Py Mechanize submit more data using the auth'ed user

I'm trying to use Mechanize to login a website. Thanks to del for the corrections. import re import mechanize login_url = 'login.aspx' def login(id, username, password): br = ...
0
votes
0answers
259 views

Why would mechanize .open() / .read() / .close() return None/have socket internals be None?

I'm getting occasional AttributeErrors with code of the following sort. I set a mechanize instance up with: self.mech = mechanize.Browser(factory=mechanize.RobustFactory()) self.cj = ...
0
votes
3answers
121 views

match table row id's with a common prefix

This might be merely a syntax question. I am unclear how to match only table rows whose id begins with rowId_ agent = Mechanize.new pageC1 = agent.get("/customStrategyScreener!list.action") The ...
1
vote
0answers
53 views

Is is possible to POST to a URL with Mechanize without opening it first?

I would like POST to a URL with some form fields filled in with Mechanize in Python. Most code examples like this one: import mechanize url = "http://duckduckgo.com/html" br = mechanize.Browser() ...
3
votes
1answer
90 views

Get around a 404 with mechanize

I'm creating a Python script that would read a file of URLs, but I know not all of them will work. I'm trying to figure out how to get around this and make it read the next line of the file, instead ...
0
votes
0answers
101 views

Python, mechanize & HTTPS: socket dump as a proof of data authenticity?

I'm thinking of recording a whole HTTPS session, publishing its encryption keys and presenting it to third parties as a proof that this particular data was sent by a given server identifying itself ...
2
votes
1answer
265 views

Python mechanize doesn't work when HTTPS and Proxy Authentication required

I use Python 2.7.2 and Mechanize 0.2.5. When I access the Internet, I have to go through a proxy server. I wrote the following codes, but an URLError occurred at the last line.. Does anyone have any ...
0
votes
0answers
94 views

why does mechanize not recognize these radio buttons?

I am trying to get controls information of a form on a website (http://www.proxy-listen.de/Proxy/Proxyliste.html). (Actually I want to fill the form, submit it, and get a list of proxy servers). I am ...
2
votes
2answers
107 views

Automating Interaction with website - Rails

I'm trying to automate logging in and posting some stuff on a website, but I can't use Mechanize since there are many javascript actions involved. I was wondering if there were any other gems/tools to ...
1
vote
0answers
77 views

How to make simultaneous requests with mechanize?

Is it possible to run more than one request with mechanize at a time? I know about threads, but the problem with threads is, that mechanize processes thread after thread and not all threads at the ...

1 3 4 5 6 7 23