python+selenium2自动化---设置元素等待
2021-05-07 22:29
标签:common 加载完成 firefox locate color get cep expec pytho 当页面未加载完成时,元素可能不能获取,可以设置页面等待提高脚本稳定性。 webdriver提供了两种类型的等待:显式等待、隐式等待 一、显示等待 显式等待使WebdDriver等待某个条件成立时继续执行,否则在达到 最大时长时抛弃超时异常(TimeoutException)。 示例代码: python+selenium2自动化---设置元素等待 标签:common 加载完成 firefox locate color get cep expec pytho 原文地址:https://www.cnblogs.com/Xiaojiangzi/p/13181471.htmlfrom selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
driver = webdriver.Firefox()
driver.get("http://www.baidu.com")
element = WebDriverWait(driver, 5, 0.5).until(
EC.presence_of_element_located((By.ID, "kw"))
)
element.send_keys(‘selenium‘)
driver.quit()
上一篇:php实现最大自序和算法
下一篇:Python实现请求代理
文章标题:python+selenium2自动化---设置元素等待
文章链接:http://soscw.com/index.php/essay/83863.html