Python自动化测试系列[v1.0.0][智能等待]
# 用于实现智能等待页面元素的出现 # encoding = utf-8 """ __title__ = '' __author__ = 'davieyang' __mtime__ = '2018/4/21' """ from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC import difflib class Smart
用户评论