web自动化引用模块及第三方库
Posted minghong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web自动化引用模块及第三方库相关的知识,希望对你有一定的参考价值。
selenium:from selenium import webdriver
安装:pip install selenium
time:import time
等待时间:from selenium.webdriver.support.wait import WebDriverWait
等待条件:from selenium.webdriver.support import expected_conditions as EC
表明定位类型:from selenium.webdriver.common.by import By
鼠标操作:from selenium.webdriver.common.action_chains import ActionChains
select元素下拉框:from selenium.webdriver.support.select import Select
按键操作:from selenium.webdriver.common.keys import Keys
上传文件: import win32gui
import win32con
安装:pip install pypiwin32
以上是关于web自动化引用模块及第三方库的主要内容,如果未能解决你的问题,请参考以下文章