我正在使用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:看了谷歌。无法得到答案提前致谢
答案 0 :(得分:2)
我认为这应该是答案:
page, resources = ghost.evaluate(
"document.getElementById('txtViewAll').click();", expect_loading=True)
此致