使用 SpecFlow 进行 Silveright UI 测试

发布于 2024-11-26 01:02:08 字数 282 浏览 6 评论 0原文

我们成功地使用 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 技术交流群。

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

发布评论

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

评论(1

匿名。 2024-12-03 01:02:08

我在这里创建了一个有关 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/

总结一下,您需要执行以下操作

  1. 创建测试项目
  2. 为该项目设置规范流
  3. 添加对 SilverlightUIAutomationHelper.dll 的 silverlight 应用程序(不是测试项目)的引用。这允许编码的 UI 测试挂钩到 silverlight 应用程序
  4. 现在让它们一起工作基本上与第二个链接相同,

请注意,尽管编码的 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

  1. Create a Test Project
  2. Set up specflow for that project
  3. Add a reference to your silverlight app (not the test project) for SilverlightUIAutomationHelper.dll. This allows the Coded UI Test to hook into the silverlight app
  4. Now getting them to work together is basically the same as by second link

Just a note though Coded UI Tests do not work with out of browser silverlight apps and i think its only silverlight 4.

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