一個對話框,以這樣的方式來實現的應用程序:如何使用Appium通過硒查找警報對話框?
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Something");
builder.setTitle("Something");
dialog = builder.create();
dialog.show();
我怎麼能找到Appium測試腳本這個元素?
driver.switchTo().alert();
拋出NotImplementError
driver.findElement(By.tagName("AlertDialog"))
不工作
而且我發現這個問題Alert methods NYI Github上。有什麼解決方法嗎?順便說一下,我不打算在該對話框上點擊「確定」或「取消」,我即將等到該對話框自動消失。
在此先感謝。
他們並不想解除警報,他們需要等待,直到它自動解散。 – sheeptest