gpt4 book ai didi

html - 仅使用 id 启用复选框

转载 作者:行者123 更新时间:2023-12-04 16:22:26 25 4
gpt4 key购买 nike

我想填写一个 HTML 表单,我正在使用 python 的 mechanize 模块。
我的 HTML 代码类似于复选框和下拉列表:

<div id="post_cd">
<input role="checkbox" id="cd_info" class="cbox" type="checkbox">
<span class="s-iso" style="display:none"></div>


<label for="type" id="cdtype" class="cd" style="width:60px;margin:1px;float:left;text-align:right;">CD type:</label>
<select id='cdtype' class=" ui-iso" style="width:100px;margin:1px;float:left;">
<option value="CD1">Error1</option>
<option value="CD2">Error1</option>
<option value="CD3">Error2</option>
</select>

我试过以下但得到错误:

对于复选框: form.find_control("cd_info").items[0].selected = True对于下拉列表: form['cdtype']= ['Error1']
错误:
    raise ControlNotFoundError("no control matching "+description)
mechanize._form.ControlNotFoundError: no control matching name 'cd_info'

raise ControlNotFoundError("no control matching "+description)
mechanize._form.ControlNotFoundError: no control matching name 'cdtype'

最佳答案

没有<form>在您的 HTML 代码中。所以很可能 form没有指向您在调用 find_control 时提供的 HTML 代码周围的元素或订阅运营商。

您可以尝试打印表单的文本以确保您看到的是正确的内容:

print form

关于html - 仅使用 id 启用复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14100913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com