要导入WebDriverWait,正确的方法是使用selenium.webdriver.support.Wait还是使用selenium.webdriver.support.ui?

ovfsdjhp  于 2022-11-10  发布在  其他
关注(0)|答案(1)|浏览(141)
from selenium.webdriver.support.wait import WebDriverWait

from selenium.webdriver.support.ui import WebDriverWait

自从我开始使用Selify以来,我一直在使用ui,我也经常看到其他人也在使用ui,但我在Selify文档中找不到它,现在Pylance显示了这个警告:

"WebDriverWait" is not exported from module "selenium.webdriver.support.ui"
Import from "selenium.webdriver.support.wait" instead

这两个似乎都很有效,但我没有发现任何关于哪一个会过时的警告或类似的东西。我想更好地了解这个主题背后的原因!

相关问题