Python Mechanize 选择表单 FormNotFoundError

发布于 2024-12-08 14:41:56 字数 421 浏览 2 评论 0原文

我想选择带有机械化的形式。这是我的代码:

br = mechanize.Browser()
self.br.open(url)
br.select_form(name="login_form")

表单的代码:

<form id="login_form" onsubmit="return Index.login_submit();" method="post" action="index.php?action=login&server_list=1">

但我收到此错误:

mechanize._mechanize.FormNotFoundError: no form matching name 'login_form

I want to select a form with mechanize. This is my code:

br = mechanize.Browser()
self.br.open(url)
br.select_form(name="login_form")

The form's code:

<form id="login_form" onsubmit="return Index.login_submit();" method="post" action="index.php?action=login&server_list=1">

But I'm getting this Error:

mechanize._mechanize.FormNotFoundError: no form matching name 'login_form

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

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

发布评论

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

评论(2

梦一生花开无言 2024-12-15 14:41:56

问题是您的表单没有名称,只有 id,并且它是 login_form。您可以使用谓词:(

br.select_form(predicate=lambda f: f.attrs.get('id', None) == 'login_form')

如果 f.attrs 具有键 id,并且如果是,则 id 值等于login_form)。或者,如果您知道它是第一个、第二个等,则可以传递页面中表单的编号。例如,下面的行选择第一个表单:

br.select_form(nr=0)

The problem is that your form does not have a name, only an id, and it is login_form. You can use a predicate:

br.select_form(predicate=lambda f: f.attrs.get('id', None) == 'login_form')

(where you se if f.attrs has the key id and, if so, the id value is equal to login_form). Alternatively, you can pass the number of the form in the page, if you know if it is the first one, the second one etc. For example, the line below selects the first form:

br.select_form(nr=0)
落花随流水 2024-12-15 14:41:56

更具可读性:

class Element_by_id:
    def __init__(self, id_text):
        self.id_text = id_text
    def __call__(self, f, *args, **kwargs):
        return 'id' in f.attrs and f.attrs['id'] ==self.id_text

然后:

b.select_form(predicate=Element_by_id("login_form"))

a little more readable:

class Element_by_id:
    def __init__(self, id_text):
        self.id_text = id_text
    def __call__(self, f, *args, **kwargs):
        return 'id' in f.attrs and f.attrs['id'] ==self.id_text

then:

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