使用 SpecFlow 进行 Silveright UI 测试
我们成功地使用 SpecFlow 和 Selenium 来测试我们的 HTML 应用程序,并正在寻找类似的方法来测试我们的 Silverlight 应用程序。目前,我们正在评估以下选项:
- 使用 Microsoft Silverlight 单元测试框架的 SpecFlow Silverlight
- 使用 Telerik WebAii 的正常 SpecFlow
有人尝试过这些方法吗? Microsoft 框架可以测试 UI 元素(例如单击按钮、断言文本值)吗?还有其他选择吗?
We use SpecFlow with Selenium successfully to test our HTML applications and are looking for a similar way to test our Silverlight applications. At the moment, we are assessing these options:
- SpecFlow Silverlight with Microsoft Silverlight unit test framework
- Normal SpecFlow using Telerik WebAii
Has anyone tried these approaches? Can Microsoft framework test UI elements (eg click on button, assert on text value)? Are there other options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在这里创建了一个有关 Silverlight 单元测试和 Specflow 的博客条目
http://rburnham.wordpress.com/ 2011/05/13/testing-silverlight-asynchronous-code-with-specflow/
请注意,这是一个预发布版本,他们可能对语法进行了一些更改。
但这听起来像是你的 UI 测试之后。您可以使用带有specflow的编码UI测试来实现这一点。我也写了一个关于这个的系列
http:// rburnham.wordpress.com/2011/03/15/bdd-ui-automation-with-specflow-and-coded-ui-tests/
总结一下,您需要执行以下操作
请注意,尽管编码的 UI 测试不适用于浏览器外的 silverlight 应用程序,我认为它是唯一的 silverlight 4。
I created a blog entry for Silverlight Unit Testing and specflow here
http://rburnham.wordpress.com/2011/05/13/testing-silverlight-asynchronous-code-with-specflow/
just note that this was a pre release built, they may have changed the syntax a bit.
but it sounds like your after UI Tests. You can use the Coded UI Tests with specflow to achieve this. I wrote a series on this as well
http://rburnham.wordpress.com/2011/03/15/bdd-ui-automation-with-specflow-and-coded-ui-tests/
To summorise you would need to do the following
Just a note though Coded UI Tests do not work with out of browser silverlight apps and i think its only silverlight 4.