如何使用Python Selenium下载完整的网页

时间:2016-12-28 15:16:48

标签: python selenium

我必须编写一个Python代码,该代码将获取URL,使用Selenium打开Chrome / Firefox浏览器,并将其下载为"完整网页",例如CSS资产。

我知道使用Selenium的基础,如:

from selenium import webdriver

ff = webdriver.firefox()
ff.get(URL)

ff.close

如何执行下载操作(如在浏览器中自动点击CTRL + S)?

1 个答案:

答案 0 :(得分:0)

您可以尝试使用以下代码将HTML页面作为文件获取:

from selenium import webdriver

ff = webdriver.Firefox()
ff.get(URL)
with open('/path/to/file.html', 'w') as f:
    f.write(ff.page_source)
ff.close