Python selenium键盘鼠标事件实现过程详解

时间:2021-05-22

引言

----在实际的web测试工作中,需要配合键盘按键来操作,webdriver的 keys()类提供键盘上所有按键的操作,还可以模拟组合键Ctrl+a,Ctrl+v等。

举例:

#cording=gbkimport osimport timefrom selenium import webdriverfrom selenium.webdriver.common.by import By #导入by方法from selenium.webdriver.common.action_chains import ActionChains ##对鼠标事件操作from selenium.webdriver.common.keys import Keys # 对键盘事件操作current_path=os.path.dirname(__file__)firefox_path=current_path+"/../webdriver/geckodriver.exe"driver=webdriver.Firefox(executable_path=firefox_path)driver.get("http://mon.action_chains import ActionChains ##对鼠标事件操作current_path=os.path.dirname(__file__)firefox_path=current_path+"/../webdriver/geckodriver.exe"driver=webdriver.Firefox(executable_path=firefox_path)driver.get("http://127.0.0.1/zentao/user-login-L3plbnRhby9teS5odG1s.html")mouse=ActionChains(driver) #创建一个鼠标对象# element1=driver.find_element(By.XPATH,"//img[@src='/zentao/theme/default/images/main/zt-logo.png']") #Xpath利用属性定位element1=driver.find_element(By.XPATH,"//img[contains(@src,'images/main/zt-logo.png')]") #xpath使用包含属性方法定位mouse.context_click(element1).perform() #执行鼠标右击,.perform() 表示执行element2=driver.find_element(By.XPATH,"//button[@type='button' and @class='btn' ]") #多属性定位mouse.move_to_element(element2).perform() #移动到这个元素上#对元素进行截图driver.find_element(By.XPATH,"//button[@id='submit'][@type='submit']").screensh

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章