蟒蛇硒 输入搜索查询然后等待


actions = ActionChains(driver)
actions.send_keys(search_query + Keys.ENTER)
actions.perform()
# code to wait until page loads
src = driver.page_source

我将如何实现这一点?我正在尝试将密钥发送到我拥有的搜索框,然后在 .execute 之后,我希望它等到搜索结果加载,然后获取源。硒可能吗?

试图找到比time.sleep(2)更好的方法 也许像driver.wait_until_page_loads()

我希望它等到搜索结果加载

您正在寻找的是WebDriverWait(也称为"显式等待"(。

您希望选择一个表示结果已加载的特定元素并等待该元素。 假设您正在等待一个元素的存在,该元素可以通过mySearchResultsid找到。 代码如下所示。

from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
# create driver and execute search here
# now wait for the presence of the `mySearchResults` element.
# if it is not found within 10 secs, a `TimeOutException` is raised.
WebDriverWait(driver, 10).until(EC.presence_of_element_located((By.ID, "mySearchResults")))

最新更新