如何在Ui automator的图像视图字段中获取文本

时间:2018-03-05 18:27:00

标签: appium uiautomator

XML

嗨,我正在尝试验证发送和接收的消息的结果,是否有一种方法可以在图像视图字段中获取文本并对其进行验证。

1 个答案:

答案 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.");

        }