問題二:appium 搞定權限彈框的一個小辦法

public void permission() {
for (int i=0; i <= 10; i++) {
if (getPageSource().contains("容許") || getPageSource().contains("禁止")
|| getPageSource().contains("受權")) {// 出現權限提示
try {
findElement(By.xpath("//android.widget.Button[contains(@text,'容許')]")).click();// 點擊容許
} catch (NoSuchElementException e1) {
findElement(By.xpath("//android.widget.Button[contains(@text,'受權')]")).click();// 點擊受權
}
} else {
break;
}
}
}
android

相關文章
相關標籤/搜索