0

在 selenium 中处理动态页面时,我想在不跳过条件的情况下通过测试(例如 if element not found case)。如何找到元素?

4

1 回答 1

0

使用显式等待直到找不到元素,

WebDriverWait.until(condition-that-finds-the-element)

更多信息点击这里,希望它对你有用。

于 2013-10-10T06:45:02.817 回答