My html form is as follows:
<form name="someform">
<select name="someid">
<option value ="option1">
I try to see all the options and be able to choose them.
I can select the form as follows:
br.select_form("someform")
I can print (br) and see the SelectControl that I want. If I do this:
print br["someid"]
which contains only the list, but contains only the first value. Is there an API for HTMLForm that I can look at?
source
share