在 Python 中打印 selenium webelement 的 HTML 文本
我正在 Python 中使用 Selenium webdriver 进行网络抓取项目。
如何打印 selenium.WebElement 的 HTML 文本?
我打算使用 BeautifulSoup
解析 HTML 以提取感兴趣的数据。
谢谢
I am using Selenium webdriver in Python for a web-scraping project.
How to print the HTML text of the selenium.WebElement ?
I intend to use the BeautifulSoup
to parse the HTML to extract the data of interest.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法从
WebElement
获取原始 HTML。您可以从浏览器对象获取页面源:
browser.page_source
。It's not possible to get the raw HTML from a
WebElement
.You can get the page source from the browser object though:
browser.page_source
.