• Java Selenium之XP定位


    ********************************************************************

    1、id  获取id 的属性值

    2、starts-with 顾名思义,匹配一个属性开始位置的关键字  -- 模糊定位

    3、contains 匹配一个属性值中包含的字符串  -- 模糊定位

    4、text()  函数文本定位

    5、last()  函数位置定位

    1、XPATH使用方法
    使用XPATH有如下几种方法定位元素(相比CSS选择器,方法稍微多一点):
    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的元素
    元素定位总结
    
    //注:本专题只介绍java版
    //By id
    WebElement ele = driver.findElement(By.id());
    //By Name
    WebElement ele = driver.findElement(By.id());
    //By className
    WebElement ele = driver.findElement(By.className());
    //By tabName
    WebElement ele = driver.findElement(By.tagName());
    //By linkText
    WebElement ele = driver.findElement(By.linkText());
    //By partialLinkText
    WebElement ele = driver.findElement(By.partialLinkText());//通过部分文本定位连接
    //By cssSelector
    WebElement ele = driver.findElement(By.cssSelector());
    //By XPATH
    WebElement ele = driver.findElement(By.xpath());

    ****************************************************

  • 相关阅读:
    javascript中replace()
    防止IE6出现BUG的十种常见解决方法
    IE6 重复字符的bug
    IE6 BUG大全
    display:inline
    JavaScript 图片上传预览效果
    用一行代码让w3wp进程崩溃,如何查找w3wp进程崩溃的原因
    近期学习任务
    气死我的存储过程和用户定义函数
    Damn,China Mobile!!!!
  • 原文地址:https://www.cnblogs.com/yimai-series/p/13208290.html
Copyright © 2020-2023  润新知