如何在python中使用Selenium WebDriver获取整个网页源[重复]
Posted
技术标签:
【中文标题】如何在python中使用Selenium WebDriver获取整个网页源[重复]【英文标题】:How to get the entire web page source using Selenium WebDriver in python [duplicate] 【发布时间】:2016-05-30 21:48:35 【问题描述】:我在 python 中使用 Selenium WebDriver,我想在一个变量中检索网页的整个页面源(类似于许多网络浏览器提供的用于获取页面源的右键单击选项)。
感谢任何帮助
【问题讨论】:
【参考方案1】:你的 WebDriver 对象应该有一个page_source
属性,所以对于 Firefox 来说它看起来像
from selenium import webdriver
driver = webdriver.Firefox()
driver.page_source
【讨论】:
以上是关于如何在python中使用Selenium WebDriver获取整个网页源[重复]的主要内容,如果未能解决你的问题,请参考以下文章
如何让 Selenium firefox 驱动只截取浏览过的页面
如何在 Selenium Webdriver 3 中为 Firefox 驱动程序设置默认配置文件?
Python3.x:Selenium中的webdriver进行页面元素定位