Tagged Questions

4
votes
3answers
55 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 chok …
0
votes
2answers
69 views

mechanize can’t login python

I'm making auto-login script by use mechanize python. Before I was used mechanize with no problem, but www.gmarket.co.kr in this site I couldn't make it . whenever i try to login …
1
vote
2answers
55 views

Ruby Nokogiri Parsing HTML table

I am using mechanize/nokogiri and need to parse out the following HTML string. can anyone help me with the xpath syntax to do this or any other methods that would work? <table …
1
vote
2answers
69 views

How do I download a file with WWW::Mechanize after it submits a form?

I have the code: #!/usr/bin/perl use strict; use WWW::Mechanize; my $url = 'http://divxsubtitles.net/page_subtitleinformation.php?ID=111292'; my $m = WWW::Mechanize->new(autoc …
2
votes
1answer
102 views

Twill/Mechanize access to html content…

Hello! Couple of questions regarding Twill and Mechanize: 1) Is Twill still relevant as a web-automation tool? If yes, then why is not currently maintained? If no, has Mechaniz …
1
vote
1answer
40 views

Issues with mechanize follow_link() and back()

I've run into a problem with mechanize following links. Here's a snippet of what I'm aiming to do: for link in mech.links(url_regex='/test/'): mech.follow_link(link) // D …
1
vote
5answers
575 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 …
0
votes
0answers
13 views

Mechanize - AmbiguityError trying to set multiple hidden fields readonly property to False

I swear this was working earlier, but I tried this just now on the same form with multiple hidden elements where I need to set readonly to false in order to update their values, an …
0
votes
1answer
330 views

mechanize (python) click on a javascript type link

Hi, 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 th …
0
votes
1answer
95 views

How to get redirect log in Mechanize?

Hello. In ruby, if you use mechanize following 301/302 redirects like this require 'mechanize' m = WWW::Mechanize.new m.get('http://google.com') how to get the list of the page …
0
votes
4answers
274 views

What pure Python library should I use to scrape a website?

I currently have some Ruby code used to scrape some websites. I was using Ruby because at the time I was using Ruby on Rails for a site, and it just made sense. Now I'm trying to …
1
vote
2answers
203 views

How to click a link that has javascript:__doPostBack in href?

I am writing a screen scraper script in python with module 'mechanize' and I would like to use the mechanize.click_link() method on a link that has javascript:__doPostBack in href. …
0
votes
1answer
47 views

Ruby - Working with Mechanize::File response without saving to disk

Hi all, I'm working on my first ORM project and am using Mechanize. Here's the situation: I'm downloading a zip file from my website into a Mechanize::File object. Inside the zi …
1
vote
1answer
31 views

How to set an nonexistent field in Python ClientForm?

Hello. I'm using mechanize (which uses clientform) for some web crawling in python and since it doesn't support JS, I want to set a value of an unexistent input in a form (the inpu …
0
votes
1answer
83 views

Python mechanize doesn’t click a button

Hello, check the following script: from mechanize import Browser br = Browser() page = br.open('http://scottishladiespool.com/register.php') br.select_form(nr = 5) r = br.click …

1 2 3 4 next
15 30 50 per page