时间: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邮箱联系删除。
jquery键盘事件的使用方法详解jQuery处理键盘事件有三个函数,根据事件发生的顺序分别是:jquery代码:1.keydown();2.keyup();3
不过setCapture不支持键盘事件,只能捕获以下鼠标事件:onmousedown、onmouseup、onmousemove、onclick、ondblcl
实现步骤:1.实现整个鼠标框选的几个事件(down、move、up),当鼠标点下记录鼠标框选的起点,鼠标抬起结束操作。2.以鼠标框选过程中获取的鼠标坐标为基点计
(一)编程环境操作系统:Win10编程语言:Python3.6(二)安装selenium这里使用selenium实现。如果没有安装过python的seleniu
安装selenium打开命令控制符输入:pipinstall-Uselenium火狐浏览器安装firebug:到此这篇关于selenium+python实现基本