Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download a HTML webpage using Selenium with python?

I want to download a webpage using selenium with python. using the following code:

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys

chromeOptions = webdriver.ChromeOptions()
chromeOptions.add_argument('--save-page-as-mhtml')
d = DesiredCapabilities.CHROME
driver = webdriver.Chrome()

driver.get("http://www.yahoo.com")

saveas = ActionChains(driver).key_down(Keys.CONTROL)\
         .key_down('s').key_up(Keys.CONTROL).key_up('s')
saveas.perform()
print("done")

However the above code isnt working. I am using windows 7. Is there any by which i can bring up the 'Save as" Dialog box?

Thanks Karan

like image 275
karan juneja Avatar asked Mar 20 '17 09:03

karan juneja


Video Answer


1 Answers

You can use below code to download page HTML:

from selenium import webdriver

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

Just replace "/path/to/page_source.html" with desirable path to file and file name

Update

If you need to get complete page source (including CSS, JS, ...), you can use following solution:

pip install pyahk # from command line

Python code:

from selenium.webdriver.firefox.firefox_binary import FirefoxBinary
import ahk

firefox = FirefoxBinary("C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe")
from selenium import webdriver

driver = web.Firefox(firefox_binary=firefox)
driver.get("http://www.yahoo.com")
ahk.start()
ahk.ready()
ahk.execute("Send,^s")
ahk.execute("WinWaitActive, Save As,,2")
ahk.execute("WinActivate, Save As")
ahk.execute("Send, C:\\path\\to\\file.htm")
ahk.execute("Send, {Enter}")
like image 181
Andersson Avatar answered Oct 20 '22 06:10

Andersson