在 Python 中打印 selenium webelement 的 HTML 文本

发布于 2024-12-18 12:54:56 字数 165 浏览 0 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(1

电影里的梦 2024-12-25 12:54:56

无法从 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.

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