Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在单击 spynner 中的按钮时遇到问题。这是我到目前为止加载页面的内容:
import spynner browser = spynner.Browser() browser.load("http://www.google.com") browser.show()
高级搜索之类的链接工作正常,但我无法使用搜索按钮。我怎样才能解决这个问题?谢谢您的帮助。
这是有效的代码片段。想办法。
import spynner from PyQt4.QtCore import Qt b = spynner.Browser() b.show() b.load("http://www.google.com") b.wk_fill('input[name=q]', 'soup') b.sendKeys("input[name=q]",[Qt.Key_Enter]) b.browse()