I'm attempting to use mechanize (v0.2.5) to work with a form on a page that has a disabled image as one of the form elements. When I try to select the form, mechanize raises an AttributeError: control 'test' is disabled where test is the name of the disabled control. For example,
br = mechanize.Browser(factory=mechanize.RobustFactory())
br.open("http://whatever...")
br.select_form(nr=0)
Leads to this stack trace:
br.select_form(nr=0)
File "build\bdist.win32\egg\mechanize\_mechanize.py", line 499, in select_form
File "build\bdist.win32\egg\mechanize\_html.py", line 544, in __getattr__
File "build\bdist.win32\egg\mechanize\_html.py", line 557, in forms
File "build\bdist.win32\egg\mechanize\_html.py", line 237, in forms
File "build\bdist.win32\egg\mechanize\_form.py", line 844, in ParseResponseEx
File "build\bdist.win32\egg\mechanize\_form.py", line 1017, in _ParseFileEx
File "build\bdist.win32\egg\mechanize\_form.py", line 2735, in new_control
File "build\bdist.win32\egg\mechanize\_form.py", line 2336, in __init__
File "build\bdist.win32\egg\mechanize\_form.py", line 1221, in __setattr__
AttributeError: control 'test' is disabled
Examining the mechanize source code, it looks as if this error will always be raised when there is any form element that evaluates to a mechanize.SubmitControl and that has no pre-defined value attribute. For example, the following form would raise the same error:
<form action="http://whatever" method="POST">
<input name="test" type="submit" disabled="disabled" />
</form>
I'm not sure if this should count as a bug, but in any case is there a workaround? For instance, is there a way I can alter the HTML of the target page to enable the disabled controls before I call br.select_form()?
EDIT
I've submitted a patch to mechanize that fixes this problem.
$ python setup.py installI hope they bring in your fix in the next release :-) – aknatn May 7 '12 at 0:07