gpt4 book ai didi

testing - 如何以编程方式按下警报确定按钮?

转载 作者:行者123 更新时间:2023-11-28 20:16:53 26 4
gpt4 key购买 nike

如何以编程方式按下 JS 警报中的“确定”按钮?

我想做的:每次创建警报后,按下“确定”按钮。

这是针对使用 Selenium RC 的 UI 测试。

此外,我已经检查过:Click in OK button inside an Alert (Selenium IDE) .

编辑:我已经使用了 chooseOkOnNextConfirmation() 并将其放置在单击生成警报的按钮之前。我也试过把它放在后面。没有任何效果!

最佳答案

使用 chooseOkOnNextConfirmation 你可以做到这一点。

selenium.chooseOkOnNextConfirmation();  // prepares Selenium to handle next alert
selenium.click(locator);
String alertText = selenium.getAlert(); // verifies that alert was shown
assertEquals("This is a popup window", alertText);

有关更多信息,请访问此链接 link

关于testing - 如何以编程方式按下警报确定按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10749959/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com