gpt4 book ai didi

java - 截取 Selenium 中断言的屏幕截图?

转载 作者:行者123 更新时间:2023-11-30 06:07:48 24 4
gpt4 key购买 nike

以下是我的断言。

Assert.assertEquals(securityQuestionPage.UserName.getText().toString(),BaseClass.unsuccessfulpassword);

我想根据断言的结果使测试用例失败/通过..

如果断言失败:

test.fail("description", takescreenshot)

如果断言通过

test.pass("passed",takeScreenshot)

不使用if语句,我可以有像三元运算符这样的断言吗?

有类似的吗?

Assert.AsserEquals(locator.getText(), expectedMessage,test.pass(""),test.fail())

最佳答案

您可以使用try-catch block :

try{
Assert.assertEquals(securityQuestionPage.UserName.getText().toString(),BaseClass.unsuccessfulpassword);

// Now if the above line is correct then flow will not go to catch block followed by line just after this line.
test.pass("passed",takeScreenshot)
}

catch(Exception e){
test.fail("description", takescreenshot)
}

关于java - 截取 Selenium 中断言的屏幕截图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50924709/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com