使用Cucumber进行桌面软件测试怎么样

发布于 2024-10-17 03:45:37 字数 100 浏览 1 评论 0原文

Cucumber 是 Rails Web 应用程序开发中非常强大的 BDD 工具。 但是,我的问题是,我们可以在桌面软件测试领域使用 Cucumber 吗? 我真的很喜欢 BDD 概念。

Cucumber is a very powerful BDD tool in rails web application development.
But, my question would be, can we use cucumber in desktop software testing area?
I really like the BDD conception.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清风夜微凉 2024-10-24 03:45:37

我建议您阅读 http://www.pragmaticprogrammer.com/titles 编写的《Scripted GUI Testing With Ruby》一书/idgtr

基本上你需要一些方法来驱动你的操作系统
在 Windows 上,您可以使用 win32ole 来驱动 Wscript,例如

s = WIN32OLE.new 'Wscript.Shell'
s.Exec 'notepad'

您没有提及什么操作系统等...

I would suggest getting the book, Scripted GUI Testing With Ruby, by http://www.pragmaticprogrammer.com/titles/idgtr

Basically you need some way to drive your OS
On Windows you can use win32ole to drive Wscript e.g.

s = WIN32OLE.new 'Wscript.Shell'
s.Exec 'notepad'

You don't mention what OS etc...

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