We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I recently encountered a site grab couldn't handle. Here is the code to reproduce that issue:
from grab import Grab g = Grab() g.setup_document(''' <form> <input id="aa" type="radio" name="xxx" value="1111" disabled="disabled" /> <input id="bb" type="radio" name="xxx" value="2222" checked="checked" /> </form> ''') print g.form_fields()