嗨,我正在尝试验证发送和接收的消息的结果,是否有一种方法可以在图像视图字段中获取文本并对其进行验证。
答案 0 :(得分:0)
您可以使用以下代码行来验证图片上的消息。
driver.findElement(By.name("id of text in image"));
String text = driver.findElement(By.name("id of text in image")).getText();
if (text.equalsIgnoreCase("Message that is to be checked")) {
System.out.println("Existing Message is correct.");
} else {
System.out.println("Existing Message is wrong.");
}