actions = ActionChains(driver)actions.send_keys(search_query + Keys.ENTER)actions.perform()# code to wait until page loadssrc = driver.page_source我将如何实现这一点?我正在尝试将密钥发送到我拥有的搜索框,然后在 .perform 之后我希望它等到搜索结果加载,然后获取源。硒有可能吗?试图找到一种比time.sleep(2)也许更好的方法driver.wait_until_page_loads()
添加回答
举报
0/150
提交
取消