填写内的文本区域带有 python mechanize 的标签

发布于 2024-12-02 02:17:32 字数 1011 浏览 1 评论 0原文

我在机械化从标签内注册文本区域字段时遇到问题。

示例 URL: http://www.gegononta.gr/register.php

代码:

mech = mechanize.Browser()
url = "http://www.gegononta.gr/register.php"
response = mech.open(url)

mech.select_form(nr=1)
mech.form.set_all_readonly(False)

print mech.form

输出:

<POST http://www.gegononta.gr/register.php application/x-www-form-urlencoded
<TextControl(reg_username=)>
<IgnoreControl(reg-checkbutton1=<None>)>
<TextControl(reg_email=)>
<IgnoreControl(reg-checkbutton2=<None>)>
<PasswordControl(reg_password=)>
<PasswordControl(reg_password2=)>
<HiddenControl(recaptcha_response_field=manual_challenge)>
<SubmitControl(submit=Create user)>
<HiddenControl(regfrom=full)>>

如何我可以填写以下字段吗?

<textarea cols="40" rows="3" name="recaptcha_challenge_field"></textarea>

I'm having a problem with mechanize registering a text area field from within a tag.

Example URL: http://www.gegononta.gr/register.php

Code:

mech = mechanize.Browser()
url = "http://www.gegononta.gr/register.php"
response = mech.open(url)

mech.select_form(nr=1)
mech.form.set_all_readonly(False)

print mech.form

Output:

<POST http://www.gegononta.gr/register.php application/x-www-form-urlencoded
<TextControl(reg_username=)>
<IgnoreControl(reg-checkbutton1=<None>)>
<TextControl(reg_email=)>
<IgnoreControl(reg-checkbutton2=<None>)>
<PasswordControl(reg_password=)>
<PasswordControl(reg_password2=)>
<HiddenControl(recaptcha_response_field=manual_challenge)>
<SubmitControl(submit=Create user)>
<HiddenControl(regfrom=full)>>

How can I fill in the following field?

<textarea cols="40" rows="3" name="recaptcha_challenge_field"></textarea>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一个人的旅程 2024-12-09 02:17:32
<textarea cols="40" rows="3" name="recaptcha_challenge_field"></textarea>

实际上不是机械化可以填补的领域。

<textarea cols="40" rows="3" name="recaptcha_challenge_field"></textarea>

is actually not a field that mechanize can fill out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文