BR中的文本无法使用python beautifulsoup获取

时间:2019-04-11 08:56:53

标签: python web-scraping beautifulsoup

我想在br标签下的div中获取所有数据。但是它只获取第一个文本。

<div itemprop="description">

<p>Chars :
</br>- test1 
</br>- test2 
</br>- test3
</p>

</div>

脚本:

tag = soup.find(itemprop="description").get_text()

输出:

Chars
-test1

我想让所有文本都在br

1 个答案:

答案 0 :(得分:0)

lxml没问题,然后选择

OnInit