#cording=gbk
#一般最上面放系统自带的包或者类
import os
import time

##第二层放第三方下载的包或者类
from selenium import webdriver
from selenium.webdriver.common.by import By #导入by方法
from selenium.webdriver.common.action_chains import ActionChains ##对鼠标事件操作
from selenium.webdriver.common.keys import Keys ##对键盘操作
from selenium.webdriver.support.wait import WebDriverWait #隐式等待

##第三层放用户自定义的包或者类
import configparser

相关文章:

  • 2021-08-19
  • 2021-11-21
  • 2022-01-02
  • 2021-07-17
  • 2021-03-31
  • 2022-01-09
  • 2022-12-23
  • 2021-11-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-26
  • 2021-11-18
  • 2021-10-19
  • 2022-01-09
  • 2021-05-08
相关资源
相似解决方案