有没有自动生成屏幕抓取Java代码的工具
有没有一种方法可以通过代理浏览网站并自动生成可以回放请求的 Java 代码(使用 HtmlClient)?
Is there a way of browsing a web site through a proxy and autogenerating Java code (using HtmlClient) that can play back the requests?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 Selenium。您可以使用 Selenium IDE 记录会话,然后选择使用“导出”菜单项将其导出到 Java 测试。然后,您可以使用 Java 客户端驱动程序 运行测试。
Take a look at Selenium. You can use the Selenium IDE to record a session, and then choose use the "Export" menu item to export it to Java tests. You can then use the Java Client Driver to run the tests.
不确定您的代码生成需要什么。您是否看过 Apache JMeter,它通过代理记录测试用例,并为您提供生成自己的数据的接口。
Not sure what your code generation needs are. Have you looked at Apache JMeter that records test cases through a proxy and also provides interfaces for you to generate your own data.