标签:bsp cli selector 封装 chain move find self text
在WebDriver中,提供了许多鼠标操作的方法,这些操作方法都封装在ActionChains类中,其中如左击、右键、双击、拖动、悬停等功能。
封装方法,其他的事件可类似修改
def ClickBtn(self,type,value):
if type =="CSS_SELECTOR":
self.dr.find_element(By.CSS_SELECTOR,value).click()
elif type=="TAG_NAME":
self.dr.find_element(By.TAG_NAME,value).click()
elif type =="CLASS_NAME":
self.dr.find_element(By.CLASS_NAME,value).click()
elif type =="ID":
self.dr.find_element(By.ID,value).click()
elif type =="XPATH":
self.dr.find_element(By.XPATH,value).click()
elif type =="LINK_TEXT":
self.dr.find_element(By.LINK_TEXT).click()
标签:bsp cli selector 封装 chain move find self text
原文地址:https://www.cnblogs.com/lldk/p/14100437.html