1

我使用Test Automation FX创建自动化测试,我是初学者。

我需要知道如何在测试脚本中失败测试?

我正在使用 C# 脚本。

假设我想识别某些窗口控件并且必须对其执行操作:

if(window["Exists"])
{
    //Perform action.
}
else
{
    // move to the next test cases.
}

我不知道如何处理else部分?

4

1 回答 1

0

要在窗口不存在时报告测试用例失败,您可以使用Test Automation FX API中的以下验证类方法:

FailTest方法:

    if (window["Exist"])
    {
        // Perform actions
    }
    else
    {
        Verify.FailTest("Window does not exist"); // Report failure message that will be shown in test report
    }

AreEqual方法:

    Verify.AreEqual(window["Exist"], true); // will fail test if window dows not exist
    // Perform actions
于 2013-10-16T08:51:27.893 回答