gpt4 book ai didi

python - 在 python、selenium 中,如何设置等待的错误消息?

转载 作者:太空宇宙 更新时间:2023-11-03 11:20:25 24 4
gpt4 key购买 nike

我有以下代码:

WebDriverWait(self.driver, 20).until(expected_conditions.element_to_be_clickable(click))

现在这有时会失败,我知道为什么会失败。但是错误给了我

TimeoutException: Message: 

这是没用的。我可以设置此消息吗?

最佳答案

您不必尝试/排除或包装任何东西; message 只是 until() 方法的一个参数。

WebDriverWait(self.driver, 20).until(
expected_conditions.element_to_be_clickable(click),
message='My custom message.',
)

这会产生:

selenium.common.exceptions.TimeoutException: Message: My custom message.

关于python - 在 python、selenium 中,如何设置等待的错误消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43922933/

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