如何使用Selenium和python下载MHTML网页?

时间:2017-03-20 18:23:40

标签: python html python-3.x selenium selenium-chromedriver

我想使用selenium和python下载.mhtml格式的网页。我使用以下代码:

driver = webdriver.Chrome()
driver.get("http://www.yahoo.com")
with open("/path/to/page_source.mhtml", "w", encoding="utf-8") as f:
    f.write(driver.page_source)

它保存了页面,但页面只有源代码。无法在页面上查看原始内容。有什么建议吗?

由于 卡兰

0 个答案:

没有答案