Selenium C# 自动生成 Visual Studio 2010 代码
我想测试一个网站用户界面。
是否可以使用 Visual Studio 2010 记录所有网站点击的元素(就像 Selenium IDE 一样)?
为了在 VS2010 中使用 Selenium 自动生成的 C# 代码,Visual Studio 2010 和 Selenium 之间是否存在集成?
谢谢
I would like to test a Website UI.
Is it possible to record all Website clicked elements using Visual Studio 2010 (just like Selenium IDE does)?
Is there a integration between Visual Studio 2010 and Selenium in order to use Selenium auto generated C# code inside VS2010?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我这样做的方法是在 Selenium IDE 中记录测试并保存为 C# 和 NUnit。 NUnit 断言与 MSTest 单元测试几乎相同。然后我粘贴到 Visual Studio 单元测试中并手动修改少量缺陷。
The way I have done this is record the test in Selenium IDE and save as C# and NUnit. NUnit asserts are almost identical to MSTest unit tests. I then paste into a Visual Studio unit test and hand modify the small number of deficiencies.
VS 中的 Selenium 等效项位于 Team System / Test 版本组件内。
允许您通过单击 IE 内的工作流程来捕获“webtest”,然后(如果您愿意)运行一系列这些 webtest 作为“负载测试”。
所有 Web 测试都可以单独运行,或者您可以将其中一些测试链接在一起以近似 Selenium 测试套件。
The Selenium equivalent in VS is inside the Team System / Test edition component.
The allows you to capture a "webtest" by clicking a workflow inside IE and then (if you want) running a series of these webtests as a "loadtest".
All the webtests can be run on their own or you can link a few of them together to approximate a Selenium Test Suite.
您可以使用“选项”->“格式”->“源”(按钮)添加新的格式以进行导出。复制现有的
C#(远程控制)
条目并更改 java 以输出 MSTest 测试。这很容易。You can add a new Format for export using Options->Formats->Source (button). Copy the existing
C# (Remote Control)
entry and alter the java to output MSTest tests. It's pretty easy.