想在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