为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

四季花海 2023-04-26 16:04:22
早上好!我在一个环境中抓了很多东西。你可以帮帮我吗?场景:我执行一个动作。这是屏幕上的临时(警报)消息。几秒后,消失!我需要的是:对此临时警报执行消息验证。下面是元素的位置:<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>有人能帮我吗?请和谢谢!
查看完整描述

1 回答

?
慕盖茨4494581

TA贡献1850条经验 获得超11个赞

您可以尝试等待警报消息可见并使用WebDriverWait和visibilityOfElementLocated条件获取文本:


WebDriverWait wait = new WebDriverWait(driver, 5);

String alertMessage = wait.until(ExpectedConditions

       .visibilityOfElementLocated(By.cssSelector(".top.alert.danger.fired"))).getText();

如果悬停时警报消息没有消失,您可以尝试Actions悬停moveToElement,然后通过单击关闭按钮获取文本并关闭警报:


WebDriverWait wait = new WebDriverWait(driver, 5);

WebElement alertMessageElement = wait

   .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();


查看完整回答
反对 回复 2023-04-26
  • 1 回答
  • 0 关注
  • 70 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信