我正在尝试使用Ghost.py多次填充表单,我需要输入到表单的值在列表中,程序看起来像这样:
inputData = ["input1", "input2", "andSoOn"]
ghost = Ghost()
with ghost.start():
session = Session(ghost, download_images=False, display=True, user_agent=USER_AGENT)
page,rs = session.open("http://somesite.org/fillme", timeout=120)
assert page.http_status == 200
# this is where i need the input data, to fill the values.
session.evaluate("""
document.querySelector('input[name="DataForm"]').value = "dataInput";
""")
# Do something and close
session.webview.setHtml("")
session.exit()
如何将inputData列表中的值传递给脚本中的querySelector方法?我一直在尝试一切,到目前为止没有运气。
运行python 2.7,使用Ghost 0.2.3和PyQt4。提前谢谢。
答案 0 :(得分:0)
Did you try using a for loop?
for input in inputData:
session.evaluate('document.querySelector(\'input[name="DataForm"]\').value= "%s";' % input)