python selenium 等待元素出现_python3+selenium3自动化测试—元素等待-等待显示
在打开网页定位元素的时候,在网络不好或者页面卡顿的情况下会导致元素定位失败,此时不建议使用sleep()强制等待。首先正常导入模块1 from selenium import webdriver2 from selenium.webdriver.support.ui import WebDriverWait3 from selenium.webdriver.support import expec...