使用Python中的Javascript生成页面

时间:2012-01-22 09:59:24

标签: javascript python html download urllib2

我想下载Javascript生成的网页,并将其存储到Python代码中的字符串变量中。单击按钮时会生成页面。

如果我知道结果网址,我会使用urllib2,但事实并非如此。

谢谢

1 个答案:

答案 0 :(得分:36)

您可以使用Selenium Webdriver

#!/usr/bin/env python
from contextlib import closing
from selenium.webdriver import Firefox # pip install selenium
from selenium.webdriver.support.ui import WebDriverWait

# use firefox to get page with javascript generated content
with closing(Firefox()) as browser:
     browser.get(url)
     button = browser.find_element_by_name('button')
     button.click()
     # wait for the page to load
     WebDriverWait(browser, timeout=10).until(
         lambda x: x.find_element_by_id('someId_that_must_be_on_new_page'))
     # store it to string variable
     page_source = browser.page_source
print(page_source)