Skip to content Skip to sidebar Skip to footer

Checkbox Input Using Python Mechanize

I want to fill a form using python mechanize. form looks like:

Solution 1:

One way that I have done it is

br.find_control("live").items[0].selected=True

Post a Comment for "Checkbox Input Using Python Mechanize"