意外警报打开chrome驱动程序

cpjpxq1n  于 2021-07-13  发布在  Java
关注(0)|答案(1)|浏览(376)

我正在尝试从一个已分别打开和关闭的警报中获取文本。
我用chromedriver来实现自动化。
这是我的密码:

System.out.println("Requesting to be Share as Only");
WebElement lnkShare = driver.findElement(By.xpath("//*[@id='lnkRequest']"));
((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView();", lnkShare);
lnkShare.click();
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[@id='lnkShare']")));
driver.findElement(By.xpath("//*[@id='lnkShare']")).click();
wait.until(ExpectedConditions.invisibilityOfElementLocated(By.xpath("//*[@id='ctl00_Dashboard_ucProgressbar_imgLoader']")));
driver.switchTo().frame("fbContent");
driver.findElement(By.xpath("//*[@id='ctl00_ContentPlaceHolder1_rdoRequestShareOnly']")).click();
driver.switchTo().alert().accept();
String alertText = alert.getText();
driver.switchTo().alert().accept();
System.out.println("getting in if loop");

if (alertText.contains("Net Size/Gross Size")) {
    System.out.println("Present");
} else {
    System.out.println("not");
}

System.out.println("out of loop");But I get the following error :

org.openqa.selenium.unhandledalertexception:意外警报打开:{警报文本:尝试共享时检测到错误!缺少以下字段:净尺寸/总尺寸供应商请确认并重试。}
问题出在哪里?

njthzxwz

njthzxwz1#

我想,问题是有另一个iframe,其中有一个元素。

相关问题