I want to fill out a HTML input field with mechanize which looks like this:
<input type="text" id="xy" name="xyz" [and some others] />
The problem: It is not located in a form, so br.select_form(...) don't work. How can I gain access to this field? Selecting the global form and br['xyz'] don't work, too. There is also a second input field which even doesn't have a name to address.