其他分享
首页 > 其他分享> > Xpath--定位

Xpath--定位

作者:互联网

1、XPATH使用方法 使用XPATH有如下几种方法定位元素: a、通过绝对路径定位元素(不推荐!) WebElement ele = driver.findElement(By.xpath("html/body/div/form/input"));   b、通过相对路径定位元素 WebElement ele = driver.findElement(By.xpath("//input"));   c、使用索引定位元素 WebElement ele = driver.findElement(By.xpath("//input[4]"));   d、使用XPATH及属性值定位元素 WebElement ele = driver.findElement(By.xpath("//input[@id='fuck']"));  WebElement ele = driver.findElement(By.xpath("//input[@type='submit'][@name='fuck']")); WebElement ele = driver.findElement(By.xpath("//input[@type='submit' and @name='fuck']")); WebElement ele = driver.findElement(By.xpath("//input[@type='submit' or @name='fuck']"));   e、使用XPATH及属性名称定位元素 元素属性类型:@id 、@name、@type、@class、@tittle //查找所有input标签中含有type属性的元素 WebElement ele = driver.findElement(By.xpath("//input[@type]"));   f、部分属性值匹配 WebElement ele = driver.findElement(By.xpath("//input[start-with(@id,'fuck')]"));//匹配id以fuck开头的元素,id='fuckyou' WebElement ele = driver.findElement(By.xpath("//input[ends-with(@id,'fuck')]"));//匹配id以fuck结尾的元素,id='youfuck' WebElement ele = driver.findElement(By.xpath("//input[contains(@id,'fuck')]"));//匹配id中含有fuck的元素,id='youfuckyou'   g、使用任意值来匹配属性及元素 WebElement ele = driver.findElement(By.xpath("//input[@*='fuck']"));//匹配所有input元素中含有属性的值为fuck的元素   元素定位总结 1、id  获取id 的属性值 2、starts-with 顾名思义,匹配一个属性开始位置的关键字  -- 模糊定位 3、contains 匹配一个属性值中包含的字符串  -- 模糊定位 4、text()  函数文本定位 5、last()  函数位置定位   示例 //*[@id='su'] 获取id 的属性为'su' 的值 //input[contains(@class,'bg s_btn')] //a[starts-with(@name,'tj_lo')] 属性模糊定位 //a[contains(@name,'tj_lo')] 属性模糊定位 //a[text()='百度搜索'] //a[contains(text(),"搜索")] --文本模糊定位  

标签:Xpath,定位,xpath,--,fuck,ele,WebElement,input,id
来源: https://www.cnblogs.com/absoluteli/p/14294840.html