单击 python 中的 javascript 链接?

发布于 2024-10-20 09:09:31 字数 326 浏览 8 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

多彩岁月 2024-10-27 09:09:31

对于这些用例,我主要使用 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.

顾北清歌寒 2024-10-27 09:09:31

与其与 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.

So尛奶瓶 2024-10-27 09:09:31

调用 __doPostBack('ctl00$MainContent$gvSearchResults','Page$'+pageid); 怎么样(javascript 方法,通过 python-spidermonkey)

how about calling __doPostBack('ctl00$MainContent$gvSearchResults','Page$'+pageid); (javascript method, via python-spidermonkey)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文