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 one for 'create'. Both are of type 'submit', and the attach button is the first one listed. So when I select the forum and do br.submit(), it clicks on the 'attach' button instead of 'create'. Extensive Googling has yielded nothing useful for selecting a specific button in a form. Does anyone know of any methods for skipping over the first 'submit' button and clicking the second?
|
|
I tried using the nr parameter, without any luck. I was able to get it to work with a combination of the name and label parameters, where "label" seems to correspond to the "value" in the HTML: Here are my two submit buttons:
... and here's the code that clicks the first one, goes back, and then clicks the second:
There's a variant that also worked for me, where the "name" of the submit button is the same, such as:
and
IMPORTANT NOTE - I was only able to get any of this multiple-submit-button code to work after cleaning up some HTML in the rest of the page. Specifically, I could not have It frustrated me to no end that the mechanize/ClientForm bug I hunted for over two hours boiled down to this:
(all on one line) did not work, but
worked fine (on multiple lines, which also shouldn't have mattered). I like mechanize because it was easy to install (just copy the files into my include directory) and because it's pretty simple to use, but unless I'm missing something major, I think that bugs like this are kind of awful - I can't think of a good reason at all why the first example there should fail and the second should work. And, incidentally, I also found another mechanize bug where a |
||
|
|
|
|
Use the 'click' method. E.g.
Should work. |
||
|
|
|
|
is there any module suport js browser ? mechanize does not support js |
||
|
|
|
|
I would suggest you to use Twill which uses mechanize (mostly monkeypatched). So say you have form with some fields and two submit buttons with names "submit_to_preview" and "real_submit". Following code should work. BTW remember this is not threadsafe so you might want to use locks in case if you want to use the code in a threaded env.
Hope that helps. Cheers. |
||
|
|
|
|
I can talk from experience using HTTP, rather than mechanize, but I think this is probably what you want. When there are two submit buttons in a form, a server can determine which one was pressed, because the client should have added an argument for the submit button. So:
Will take you either the URL:
or:
Depending on which button was pressed. If you're programatically determining what arguments are going to be sent, you need to add an argument with the name of the submit button that was pressed, and it's value. |
||
|
|
