单击 python 中的 javascript 链接?
我正在使用 python 的 mechanize 模块浏览网站,但在单击下一页的 javascript 链接时遇到问题。我读了一些书,人们建议我需要 python-spidermonkey 和 DOMforms。我设法安装了它们,但我不确定实际单击链接的语法。
我可以将页面上的代码识别为:
<a href="javascript:__doPostBack('ctl00$MainContent$gvSearchResults','Page$2')">2</a>
有人知道如何点击它吗?或者是否还有其他工具。
谢谢
I am navigating a site using python's mechanize module and having trouble clicking on a javascript link for next page. I did a bit of reading and people suggested I need python-spidermonkey and DOMforms. I managed to get them installed by I am not sure of the syntax to actually click on the link.
I can identify the code on the page as:
<a href="javascript:__doPostBack('ctl00$MainContent$gvSearchResults','Page$2')">2</a>
Does anyone know how to click on it? or if perhaps there's another tool.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于这些用例,我主要使用 jython 下的 HtmlUnit 。我还发表了一篇关于该主题的简单文章:Web 抓取 Ajax 和 Javascript 站点。
I mainly use HtmlUnit under jython for these use cases. Also I published a simple article on the subject: Web Scraping Ajax and Javascript sites.
与其与 python-spidermonkey 作斗争,不如尝试 webkit 的 qt python 绑定。
这是一个 执行 JavaScript 并提取最终 HTML 的完整示例。
instead of struggling with python-spidermonkey try webkit's qt python bindings.
Here is a full example to execute JavaScript and extract the final HTML.
调用
__doPostBack('ctl00$MainContent$gvSearchResults','Page$'+pageid);
怎么样(javascript 方法,通过 python-spidermonkey)how about calling
__doPostBack('ctl00$MainContent$gvSearchResults','Page$'+pageid);
(javascript method, via python-spidermonkey)