使用 firebug 给出 javascript 命令
我有一个包含项目列表和分页链接的页面:
<a class="paginationNext" href="JavaScript:updFormSubmit('OffSet=2','ZSearchForm')" style="">NEXT</a>
我需要跳转到第 50 页(偏移量 = 50),但是通过单击链接我只能逐页前进。
有什么方法可以使用 firebug 的控制台来“模拟”点击
<a class="paginationNext" href="JavaScript:updFormSubmit('OffSet=50','ZSearchForm')" style="">NEXT</a>
I have a page with a list of items and a pagination link:
<a class="paginationNext" href="JavaScript:updFormSubmit('OffSet=2','ZSearchForm')" style="">NEXT</a>
I need to jump to page 50 (offset=50), however by clicking on the link I can only advance page by page.
Is there any way I can use firebug's console to 'simulate' a click on
<a class="paginationNext" href="JavaScript:updFormSubmit('OffSet=50','ZSearchForm')" style="">NEXT</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需在控制台中执行
updFormSubmit('OffSet=50','ZSearchForm')
即可。 (如果您启用了多行模式,请单击运行
按钮)You can just execute the
updFormSubmit('OffSet=50','ZSearchForm')
in the console. (and click therun
button if you have multiline mode on)我认为你应该尝试 Firefox 的 selenium 插件。它允许您自动记录、编辑和调试测试。 Selenium 可以模拟所有类型的用户交互。
I think you should try the selenium Add-on for Firefox. It allows you to record, edit, and debug tests automatically. Selenium can simulate all kind of user interaction.