无元素检测的编码 UI 测试

发布于 2024-11-28 23:41:08 字数 141 浏览 1 评论 0原文

有没有办法为 WPF 应用程序创建仅检测父窗口元素的编码 UI 测试?我们正在使用不支持编码 UI 测试的组件套件,但我仍然希望能够自动化 UI 以进行测试。理想情况下,这样的解决方案将检测父窗口元素,然后使用像素偏移来自动执行任何按钮按下等。

谢谢。

Is there any way to create a coded UI test for a WPF application that only detects the parent window element? We are using a component suite that does not support Coded UI tests, but I would still like to be able to automate the UI for testing purposes. Ideally, such a solution would detect the parent window element, then use pixel offsets for automating any button presses, etc.

Thanks.

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

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

发布评论

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

评论(3

琴流音 2024-12-05 23:41:08

您可以使用编码的 UI 测试生成器来发现所需的属性,但获取窗口的基本方法非常简单。

这是一个代表窗口的非常简单的类:

using System;
using Microsoft.VisualStudio.TestTools.UITesting;
using Microsoft.VisualStudio.TestTools.UITesting.WpfControls;

public class MyWpfWindow : WpfWindow
{
    public MyWpfWindow() : base()
    {
        this.SearchProperties[WpfWindow.PropertyNames.Name] = "My Wpf Window Name";
    }
}

这是一个测试

[CodedUITest]
public class MyWpfWindowUITests
{
    [TestMethod]
    public void MyWpfWindowExistsTest()
    {
        Assert.IsTrue(MyWpfWindow.Exists(5000), "The window was not found within five seconds");
    }
}

You can use the Coded UI Test Builder to discover the properties you need, but the basic method for getting a window is pretty simple.

Here's a really simple class representing a window:

using System;
using Microsoft.VisualStudio.TestTools.UITesting;
using Microsoft.VisualStudio.TestTools.UITesting.WpfControls;

public class MyWpfWindow : WpfWindow
{
    public MyWpfWindow() : base()
    {
        this.SearchProperties[WpfWindow.PropertyNames.Name] = "My Wpf Window Name";
    }
}

And here's a test

[CodedUITest]
public class MyWpfWindowUITests
{
    [TestMethod]
    public void MyWpfWindowExistsTest()
    {
        Assert.IsTrue(MyWpfWindow.Exists(5000), "The window was not found within five seconds");
    }
}
追我者格杀勿论 2024-12-05 23:41:08

虽然从技术上讲这是可能的(Mouse.Click 具有 x,y 坐标的重载版本),但这不是一个好主意。控件布局的任何更改都会破坏您的测试。

While technically it is possible (Mouse.Click has overloaded version with x,y coordinates), it is not a good idea. Any change in control layout will break your test.

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