> For the complete documentation index, see [llms.txt](https://jablack-programs.gitbook.io/python-notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jablack-programs.gitbook.io/python-notes/python-spider/selenium/deng-dai.md).

# 等待

为了处理一些ajax的等待

`selenium.webdriver.support.wait.WebDriverWait(driver, timeout, poll_frequency=0.5, ignored_exceptions=None)`

until(method, message='')

Calls the method provided with the driver as an argument until the return value is not False.

until\_not(method, message='')

Calls the method provided with the driver as an argument until the return value is False.
