从 Groovy 启动 canoo webtest 的工作示例?
我想使用 Canoo 从 Groovy 开始一个简单的网络测试。 示例 Canoo 示例 无法正常工作。 我想我在 Antbuilder 类中遗漏了一些东西。 特别是“配置”部分,其中传递了属性的 HashMap。 我尝试了不同的方法来传递属性,但我最基本的方法是:
config_map = ['host':'www.google.com', 'port':'80', 'protocol':'http', 'basepath':' ']
它们都会产生相同的错误消息。 groovy.lang.MissingMethodException:没有方法签名:groovy.util.ConfigObject.call() 适用于参数类型:(java.util.LinkedHashMap) 值:[[主机:www.google.com,端口:80,协议:http, basepath:]]
或者,我正在查看 grails,但无法弄清楚是否可以使用 grails 项目来对非 grails 应用程序进行网络测试。 当我尝试从 Grails 复制类时,ant 再次挂在配置行上。
有人有地方可以找到 canoo-groovy webtest 的工作示例吗?
I would like to start a simple webtest from Groovy with Canoo. The example Canoo Example is not working. I think I am missing something with the Antbuilder class. Especially the "config" part, where a HashMap of properties is passed. I have tried different ways to pass properties but my most basic approach:
config_map = ['host':'www.google.com', 'port':'80', 'protocol':'http', 'basepath':'']
They all result in the same error message. groovy.lang.MissingMethodException: No signature of method: groovy.util.ConfigObject.call() is applicable for argument types: (java.util.LinkedHashMap) values: [[host:www.google.com, port:80, protocol:http, basepath:]]
Alternatively, I was looking at grails, but can not figure out if I can use a grails project to webtest a non-grails application. When I try to copy the classes from Grails, ant hangs itself again on the config line.
Does someone has a place where I could find a working example of a canoo-groovy webtest?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能想看看这篇博客文章: 使用 Groovy、Maven 和 Eclipse 进行 WebTest
Might want to take a look at this blog post: WebTest with Groovy, Maven and Eclipse