无法点击此特定" X"元件
答案 0 :(得分:0)
尝试使用以下xpath,它可能有效。
//*[@id='ngdialog1']//*[@class='ngdialog-close']
在java中
driver.findElement(By.xpath("//*[@id='ngdialog1']//*[@class='ngdialog-close']").click();
答案 1 :(得分:0)
尝试使用以下代码:
WebElement toastView = androidDriver.findElement(By.xpath("//android.widget.Toast[1]"));
String text = toastView.getAttribute("name");