警报消息验证 - 测试自动化 (Selenium)

早上好!我在一个环境中抓了很多东西。你可以帮帮我吗?


场景:我执行一个动作。这是屏幕上的临时(警报)消息。几秒后,消失!我需要的是:对此临时警报执行消息验证。


下面是元素的位置:


<div id = "alert-message-20190726103017" class = "top alert danger alert alert fired";>

<button type = "button" class = "close"/button>

<i class = "fa-exclamation icon"/i>

"Invalid username and password"/div>

有人能帮我吗?请和谢谢!


四季花海
浏览 71回答 1
1回答

慕盖茨4494581

您可以尝试等待警报消息可见并使用WebDriverWait和visibilityOfElementLocated条件获取文本:WebDriverWait wait = new WebDriverWait(driver, 5);String alertMessage = wait.until(ExpectedConditions&nbsp; &nbsp; &nbsp; &nbsp;.visibilityOfElementLocated(By.cssSelector(".top.alert.danger.fired"))).getText();如果悬停时警报消息没有消失,您可以尝试Actions悬停moveToElement,然后通过单击关闭按钮获取文本并关闭警报:WebDriverWait wait = new WebDriverWait(driver, 5);WebElement alertMessageElement = wait&nbsp; &nbsp;.until(ExpectedConditions.visibilityOfElementLocated(By.cssSelector(".top.alert.danger.fired")));Actions actions = new Actions(driver);actions.moveToElement(alertMessageElement).perform();String alertMessage = alertMessageElement.getText();alertMessageElement.findElement(By.cssSelector("button.close")).click();
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java