如何使用Ghost.py提交表单后获得下一页

时间:2014-08-28 09:28:37

标签: javascript python forms form-submit ghost.py

我使用Ghost.py填写表单。提交表格后我得到同一页面。 代码:

url_local = 'url'
gh = Ghost()
page, name = gh.create_page()
page.open(url_local, wait_onload_event=True)
page.wait_for_selector('#id_username')
page.set_field_value('#id_username', '1')
page.set_field_value('#id_password', '1')
page.capture_to("1.png")
page.fire_on('form', 'submit')

page.capture_to("2.png")

我怎样才能获得下一页?

1 个答案:

答案 0 :(得分:0)

提交后尝试等待

page, resources = ghost.wait_for_page_loaded()

然后抓住它