错误:类型不匹配:无法将元素类型Object转换为WebElement for findbyclassname

时间:2016-07-26 01:32:13

标签: android appium

想在Android中编写一个处理弹出消息的常用函数:

public static WebElement andDismiss() {
        for(WebElement e : appiumDriver.findElementsByClassName("android.widget.Button")) {
            if(e.getAttribute("text").equals("No") || e.getAttribute("text").equals("Cancel")) {
                return e;
            }
        }
        return null;
    }

但是我收到以下错误:

  

类型不匹配:无法从元素类型Object转换为WebElement

0 个答案:

没有答案