//Click the link to activate the alert
driver.findElement(By.linkText("See an example alert")).click();
//Wait for the alert to be displayed and store it in a variable
Alert alert = wait.until(ExpectedConditions.alertIsPresent());
//Store the alert text in a variable
String text = alert.getText();
//Press the OK button
alert.accept();
2条答案
按热度按时间kmpatx3s1#
首先,单击警报链接。然后尝试下面的代码(它将切换到当前警报框并从中获取文本)。
enyaitl32#
如果是浏览器javascript警报,则需要使用以下命令: