selenium自动化-java-封装断言

Posted Black-Hs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium自动化-java-封装断言相关的知识,希望对你有一定的参考价值。

封装的断言。

1
package com.baidu.www; 2 3 import org.testng.Assert; 4 /* 5 * 封装断言 6 */ 7 public class assertion { 8 static boolean flog = true; 9 10 public static void verifyassert(Object actual, Object expected) { 11 try { 12 Assert.assertEquals(actual, expected); 13 } catch (Error e) { 14 // TODO: handle exception 15 flog = false; 16 } 17 } 18 19 public static void verifyassert(Object actual, Object expected, String message) { 20 try { 21 Assert.assertEquals(actual, expected, message); 22 } catch (Error e) { 23 // TODO: handle exception 24 flog=false; 25 } 26 27 } 28 }

 调用方法,判断错误,继续执行

 1 @Test
 2     public void test1() {
 3         System.out.println("测试用例一");
 4         int actual;
 5         int expected;
 6         actual = 1;
 7         expected = 2;
 8         assertion.flog = true;
 9         for (int i = 0; i < 3; i++) {
10             System.out.println("断言开始1");
11             assertion.verifyassert(i, expected, "测试连个字符是否相同");
12             System.out.println("断言结束");
13             // 结果是tur;要修改
14         }
15         Assert.assertTrue(assertion.flog);  //结果改为flog,错

 



以上是关于selenium自动化-java-封装断言的主要内容,如果未能解决你的问题,请参考以下文章

自动化__GUI自动化__java__selenium__断言__表格标题内容断言

UI 测试 - 断言排序数据 (Katalon/Selenium) Java

Selenium+Java自动化测试的方法

如何断言在selenium测试用例的登录成功

selenium 断言和验证的区别

如何断言在selenium测试用例的登录成功