断言在Selenium

时间:2017-02-16 09:18:25

标签: java selenium-webdriver assert string-comparison

我试图断言两个字符串。但即使字符串相同,测试用例也会失败。以下是我写的:

String actualmsg="My expected string";
String errormsg = driver.findelement(By.xpath("xpath of the element")).getText();
Assert.assertEquals(actualmsg, errormsg);

当我在控制台上打印errormsg时,它提供与actualmsg相同的字符串。请帮忙。

1 个答案:

答案 0 :(得分:0)

使用Hamcrest断言来比较你将得到的结果是异常不匹配。

您使用:

assertThat(actualmsg,is(errormsg));