我试图断言两个字符串。但即使字符串相同,测试用例也会失败。以下是我写的:
String actualmsg="My expected string";
String errormsg = driver.findelement(By.xpath("xpath of the element")).getText();
Assert.assertEquals(actualmsg, errormsg);
当我在控制台上打印errormsg时,它提供与actualmsg相同的字符串。请帮忙。
答案 0 :(得分:0)
使用Hamcrest断言来比较你将得到的结果是异常不匹配。
您使用:
assertThat(actualmsg,is(errormsg));