Dear lazyweb,
I would like to be able to write Python code like the following:
page_obj = parse(html_code) form_obj = page_obj.forms[0] form_obj.my_name = 'bob' form_obj.my_select.choose('option2') new_html_code = page_obj.emit_html()
That is, we have an existing HTML form, and I would like to be able to parse it …
read moreThere are comments.