selenium常用的模块

from selenium import webdriver

#select模块处理下拉框
from selenium.webdriver.support.ui import Select

# Keys模拟键盘操作

from selenium.webdriver.common.keys import Keys

ActionChains模块模拟鼠标操作

from selenium.webdriver import ActionChains

猜你喜欢

转载自www.cnblogs.com/fanjc/p/10028727.html