Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在网站上选择多个选项后,我必须从网站下载文件。
我有三个复选框,每个复选框都具有相同的名称。我可以像这样使用名称和值来选择一个框。
urllib.urlencode({'contentPartnerIds':'67'})
我需要像这样在同一组中选择另一个复选框。
urllib.urlencode({'contentPartnerIds':'67','contentPartnerIds':'68'})
但这不起作用。你能帮忙吗?
看看 mechanize 当您需要在页面上处理表单时,它非常棒,而且非常简单。
http://wwwsearch.sourceforge.net/mechanize/