如何在Assertions中使用Verify命令。任何人都可以提供任何示例。
问题:在使用资产时,如果一个案例失败,它就会停止运行。我需要使用VERIFY(它会运行,即使有任何失败)。给我一个验证命令的例子。
答案 0 :(得分:1)
使用TestNG SoftAssert类执行多个断言而不会失败。
示例:
SoftAssert softAssert = new SoftAssert();
--Do test stuff--
softAssert.assertTrue(true, "Is this true?");
softAssert.assertFalse(true, "Is this true?");
softAssert.assertAll();