我需要在我的 python 脚本中解析 HTML。但是,要在浏览器中访问我需要的页面,请单击单选按钮并提交表单。那么,如何使用 python 提交表单并返回呈现的 html 呢?谢谢,我会很感激任何帮助。
我说的表格:
<form id="ac" method="post">
<input type="radio" id="a" name="a" value="2" onchange="document.getElementById('ac').submit();" checked="checked">
<input type="radio" id="aa" name="a" value="1" onchange="document.getElementById('ac').submit();">
<input type="radio" id="aaa" name="a" value="0" onchange="document.getElementById('ac').submit();">
</form>