I'm trying to fill a form with python mechanize. But it seems that 2 forms are embedded and I don't find a way to make mechanize interact with that.
exportresult
<exportresult POST http://www.scirus.com/srsapp/exportresults application/x-www-form-urlencoded
<HiddenControl(res=) (readonly)>
<HiddenControl(pagefrom=result) (readonly)>>
results
<results POST http://www.scirus.com/srsapp/saved application/x-www-form-urlencoded
<HiddenControl(title=Saved Results) (readonly)>
<HiddenControl(save=) (readonly)>
<CheckboxControl(r=[7xAx26010aea49b007a0db64726903fb3a8cxsciweb, 7xAx88665d05bae46aa3f689942af645930dxsciweb, 7xAx640923f554851921816e48b6c5e7ca34xsciweb, 7xAxa4c9f8bf744aad4c44bfc008b9eeeaafxsciweb, 7xAx052ca17bc168a2375b52b7cb97696405xsciweb, 7xAxd62868ca58b184bdeee0ddbbf3077837xsciweb, 7xAxa98ae3a4cd0b04f2295da9dc700caebcxsciweb, 7xAxeaea61e1e1eaeee04cf027d456841277xsciweb, 7xAxfa7ac026608f388b29cad2c630c8f655xsciweb, 7xAx0999dae37c22325098b99f669058ea4axsciweb])>
>
I want to submit exportresult after filling results.
So far, my code look like this:
br.select_form("results")
controls = br.form.controls
br['r'] = br.find_control('r').possible_items()
request = br.click()
#response = br.submit()
br.select_form("exportresult")
response = br.submit()
print response.read()
No data is received by exportresults...
Does someone have any idea how I can get this done ? Or any hint on how to find a/the solution ?
Many thanks in advance for your help !