gpt4 book ai didi

python - "with not pytest.raises"怎么办?

转载 作者:行者123 更新时间:2023-12-01 08:33:28 26 4
gpt4 key购买 nike

我想取消对话框并检查 JavaScript 警报是否未显示。我该怎么做? “with not pytest.raises”不起作用。谢谢

# try to cancel the dialog and check that JavaScript alert is displayed
with pytest.raises(UnexpectedAlertPresentException):
page.cancel()

最佳答案

UnexpectedAlertPresentException 在以下情况下引发:您不期望收到警报,但警报实际上存在,而您需要在以下情况下引发的 NoAlertPresentException >您想要处理警报,但没有警报:

from selenium.common.exceptions import NoAlertPresentException

with pytest.raises(NoAlertPresentException):
driver.switch_to.alert()

此测试应该通过,因为我们正在尝试切换到不存在的警报,并且按我们的预期引发了 NoAlertPresentException

关于python - "with not pytest.raises"怎么办?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53830891/

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