需要导入一个库
from selenium.webdriver.common.action_chains import ActionChains
ActionChains(动作链)的执行原理:
当调用ActionChains中的方法时,不会立即执行,而是将所有的操作按照顺序存放在一个队列中,当调用perform() 方法时,队列中的操作会依次执行。
#实例化ActionChains,调用drag_and_drop()方法不会立即执行,会先把操作存放在队列中。调用perform方法时才会执行队列中的操作。
ActionChains(driver).drag_and_drop(source_ele, target_ele).perform()
ActionChains(driver).drag_and_drop_by_offset(source_ele, 500, 200).perform()
首先需要定位到双击操作的按钮
double_ele = driver.find_element_by_css_selector(’[type=“button”]’)
执行双击操作
ActionChains(driver).double_click(double_ele).perform()
鼠标移动并悬停在某处
首先需要定位到鼠标悬停的元素
ele = driver.find_element_by_css_selector(’[class=“posi”] > ul > li:first-child >div:first-child’)
执行鼠标移动并悬停操作
ActionChains(driver).move_to_element(ele).perform()
5、perform() 执行所有存储的操作
ActionChains(driver).move_to_element(ele).perform()
先定位到鼠标要右键执行的按钮
right_button_ele = driver.find_element_by_css_selector(’.right’)
执行鼠标右键操作
ActionChains(driver).context_click(right_button_ele).perform()
定位到鼠标要移动到的元素
ele = driver.find_element_by_css_selector(’[class=“bar”]>img’)
定位到退出登录按钮
logout_ele = driver.find_element_by_xpath(’//*[text()=“退出登录”]’)
执行鼠标移动的操作并点击退出登录按钮操作
ActionChains(driver).move_to_element(ele).click(logout_ele).perform()
actions = ActionChains(driver)
actions.move_to_element(ele)
time.sleep(4)
actions.click(logout_ele)
actions.reset_actions()
actions.perform()