启动“编码的 UI 测试生成器”无需创建新的编码 UI 测试
Visual Studio 中的编码 UI 测试生成器应用程序在手写编码 UI 测试时非常有用。它有一个“检查器”类型的工具,可以显示所选控件的属性,这使得搜索控件变得非常简单。
目前,我能够启动此工具的唯一方法是通过“添加新的编码 UI 测试”向导。这启动正常,但是它会
- 创建一个新的空编码 UI 测试,
- 当我下次运行测试或在 Visual Studio 中开始调试时,
它会关闭有人建议如何在不添加新编码 UI 测试的情况下启动该工具吗?关于使用手写编码 UI 测试检查控件还有其他建议吗?我正在 WPF 工作,如果有什么区别的话。
The Coded UI Test Builder application in Visual Studio is very useful when hand-writing Coded UI Tests. It has an 'inspector' type tool that shows properties for a selected control, which makes searching for the control very simple.
At the moment the only way I am able to launch this tool is by going through the 'add new Coded UI Test' wizard. This launches fine, however it
- creates a new empty coded UI test
- closes down when I next run a test or start debugging in Visual Studio
Has anyone advice on how to launch the tool without adding a new Coded UI Test? Any other suggestions around inspecting controls with a hand-written Coded UI Test? I'm working in WPF if it makes any difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
对于这样的类,在测试方法内部单击鼠标右键应该会显示“为编码 UI 测试生成代码”-> “使用编码的 UI 测试生成器”选项。它仍会最小化 Visual Studio,但不应创建新的测试方法。还有一个键盘快捷键:CTRL+\、CTRL+C
With a class like this one, right clicking inside the test method should give you a "Generate Code for Coded UI Test" -> "Use Coded UI Test Builder" option. It will still minimize Visual Studio, but it shouldn't create a new test method. There is also a keyboard shortcut: CTRL+\, CTRL+C
您还可以右键单击“解决方案资源管理器”中的 UIMap.uitest 文件,然后选择“使用编码的 UI 测试生成器编辑”这样不需要编码的 UI 测试
You can also right click the UIMap.uitest file in Solution Explorer and select "Edit with Coded UI Test Builder" No need for a Coded UI Test this way
右键单击 [TestMethod] 内部,您将获得使用编码的 ui 测试构建器进行编辑的选项。单击该选项可以获得测试构建器。
如果您在 [TestMethod] 外部右键单击,则不会出现“使用编码的 ui 测试生成器编辑”选项
Right click inside [TestMethod] and you will get the option for Edit with coded ui test builder.Click on that you can get test builder.
If you right click outside of [TestMethod] than "Edit with coded ui test builder" option will not come
您可以通过右键单击测试方法或脚本之间并单击“使用编码的 ui 测试生成器编辑”来打开编码的 UI 生成器。
You can open coded UI builder by right clicking in between the Test Method or scripts and click on "Edit with coded ui test builder".