蟒蛇不能够提取价值的隐藏的输入

0

的问题

我正在尝试提取价值的一个隐藏的输入的标签。 虽然元素存在于HTML我找不到它与bs4。

这是错误的消息,我会得到:

AttributeError: 'NoneType' object has no attribute 'find'

这是html网页上:

<form id="exampleid" class="exampleclass" action="/ex/ex-ex/ex/2" method="post">
    
    <more html>
                                
    <div>
    <input type="hidden" name="csrf" value="abcdefghijklmnopqrstuvwxyz">
    </div></form>

这是我的前代码:

csrf = soup.find("form", {"id": "exampleid"})
csrf = csrf.find('input', {'name': 'csrf'}).get("value")
print(csrf)

我将感谢任何形式的帮助,因为它是真正困扰我的。 谢谢你提前!

beautifulsoup forms hidden-field python
2021-11-23 17:09:09
1

最好的答案

1

你的选择仍然是工作,认为这是另一个问题,也许你不会得到html你的期望。

作为可选择性的选择和获得的价值,这种隐藏的 <input> 你可以用下面 css selector:

soup.select_one('#exampleid input[name*="csrf"]')['value']

from bs4 import BeautifulSoup

html = '''
<form id="exampleid" class="exampleclass" action="/ex/ex-ex/ex/2" method="post">
<div>
<input type="hidden" name="csrf" value="abcdefghijklmnopqrstuvwxyz">
</div></form>'''

soup = BeautifulSoup(html, "lxml")

csrf = soup.select_one('#exampleid input[name*="csrf"]')['value']

print(csrf)

输出

abcdefghijklmnopqrstuvwxyz
2021-11-24 07:51:04

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................