自动化测试--16Selenium基本用法-鼠标键盘操作、下拉框操作

1.鼠标操作

由selenium的ActionChains类来完成模拟鼠标操作
主要操作流程:
1.存储鼠标操作
2.perform()来执行鼠标操作
支持的操作如下:
double_click 双击操作
context_click 右键操作
drag_and_drop 拖拽操作。左键按住拖动某一个元素到另一个区域,然后释放按键
move_to_element() 鼠标悬停

导入action_chains库:

from selenium import webdriver
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

你可能感兴趣的:(持续集成,selenium,ActionChains,Select)