在WebDriver中鼠标操作的方法封装在ActionChains类中
ActionChains类提供的常用方法:
perform():执行所有ActionChains中的存储行为
contextclick() 右击
double_click() 双击
drag_and_drop() 拖动
move_to_element() 鼠标悬停
- 鼠标右击事件
下面代码中:from selenium.driver import ActionChains 导入提供鼠标操作的ActionChains类
ActionChains(driver)调用ActionChains类,将浏览器驱动driver作为参数传入
context_click(right_click)方法用于模拟鼠标右键操作,在调用时需要指定元素定位
perform()执行所有ActionChains中的存储行为,对整个操作的提交动作。
2.鼠标悬停 move_to_element()方法可以模拟鼠标悬停的动作 3.鼠标双击操作 使用double_click函数 4.鼠标拖放操作 drag_and_drop(source,target)在源元素上按住鼠标左键,然互移动到目标机上释放 source:鼠标拖动的源元素 target鼠标释放的目标元素 from selenium import webdriver from time import * from selenium.webdriver.common.action_chains import ActionChains driver = webdriver.Chrome() url = "https://www.baidu.com" print(‘new access %s‘ %(url)) driver.get(url) #定位元素 right_click= driver.find_element_by_xpath(‘//*[@id="u1"]/a[8]‘) #鼠标右击 ActionChains(driver).context_click(right_click).perform() #鼠标悬停 #ActionChains(driver).move_to_element(right_click).perform() #鼠标双击 ActionChains(driver).double_click(right_click).perform() sleep(3) driver.quit()
时间: 2024-11-04 09:45:43