gpt4 book ai didi

java - 为什么selenium.isConfirmationPresent()在使用chooseCancelOnNextConfirmation后返回true

转载 作者:行者123 更新时间:2023-12-02 08:24:56 24 4
gpt4 key购买 nike

我的代码如下

selenium.chooseCancelOnNextConfirmation();

selenium.click("deleteRequest");//点击按钮将显示确认对话框

System.out.println("是否存在确认"+selenium.isConfirmationPresent());

尽管我正在使用 selenium.chooseCancelOnNextConfirmation(),请让我知道为什么 selenium.isConfirmationPresent() 返回 true。

但是 selenium.isConfirmationPresent() 在之后返回 false

selenium.getConfirmation();

是否必须使用 selenium.getConfirmation(),因为我无法进行进一步处理。它说

com.thoughtworks.selenium.SeleniumException:错误:有意外的确认! [您确定删除选定的请求吗?]com.thoughtworks.selenium.HttpCommandProcessor.throwAssertionFailureExceptionOrError(HttpCommandProcessor.java:97) 在 com.thoughtworks.selenium.HttpCommandProcessor.doCommand(HttpCommandProcessor.java:9

最佳答案

这是预期的行为。 chooseCancelOnNextConfirmation() 规定 getConfirmation() 的行为。调用getConfirmation()有效地“消耗”确认弹出窗口。在继续测试之前,您必须使用 getConfirmationverifyConfirmation,因为如果您不使用 getConfirmation 调用处理弹出窗口,任何其他 Selenium 命令都将失败。

By default, the confirm function will return true, having the same effect as manually clicking OK. This can be changed by prior execution of the chooseCancelOnNextConfirmation command. If an confirmation is generated but you do not get/verify it, the next Selenium action will fail.

所以你的代码可能是:

selenium.chooseCancelOnNextConfirmation();

selenium.click("deleteRequest")

selenium.getConfirmation();

关于java - 为什么selenium.isConfirmationPresent()在使用chooseCancelOnNextConfirmation后返回true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4713819/

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