使用ghost.py模拟点击后访问网页内容

时间:2013-01-29 11:47:32

标签: python screen-scraping ghost.py

我正在使用Ghost.py模拟按钮的单击。但是无法弄清楚如何获取单击按钮后加载的内容。

from ghost import Ghost

ghost = Ghost(wait_timeout=40)
page, extra_resources = ghost.open("http://www.samsung.com/in/consumer/mobile-phone/mobile-phone/viewall")
#ghost.wait_page_loaded()
n=2;

print type(ghost.click("input#txtViewAll"))

接下来要做什么来获取动态加载的内容?

PS:看了谷歌。无法得到答案

提前致谢

1 个答案:

答案 0 :(得分:2)

我认为这应该是答案:

page, resources = ghost.evaluate(
    "document.getElementById('txtViewAll').click();", expect_loading=True)

此致