• Xpath 小结


    1. 如何通过xpath寻找不包含某个属性的节点

      通过not关键字:比如寻找不包含style属性的节点: driver.findElement(By.xpath("./input[not(@style)]"));

    2. 通过xpath搜特定节点之下的其他节点(xpath 的// 和.//)

      

      如图需要搜索第二个<td>标签之下的table内容:

        Webment cell=driver.findElement(By.xpath("./td[@class='inv-prod-sell-through']"));

        Webment  target = cell.findElement(By.xpath(".//table")); //此处一定要在双斜杠之前加一个点 : .//  代表只会在第二个<td>之下搜索table

        //如果不加这个点,写成 //, 则搜索范围会扩大,将第一个table也会搜索出来。

     3. xpath 通过子节点得到父节点

      在xpath中1个点代表当前节点,2个点代表父节点

      

      通过<input>寻找<td>: WebElement td = driver.findElement(By.xpath("./input[@class='checkbox-input']/.."));

      通过<input>寻找<tr> : WebElement tr = driver.findElement(By.xpath("./input[@class='checkbox-input']/../.."));

    4.Contains 用法

      dirver.findElements(By.xpath("//input[contains(@id,"button")]")); //属性id包含button字符的所有input对象

      driver.findElement(By.xpath("//a[contains(text(),"baidu")]")); //包含baidu字符的第一个a对象

      driver.findElement(By.xpath("//*[contains(@value)]")); //包含value属性的第一个对象

      driver.findElement(By.xpath("//*[contains(.,'text')]"));  //搜索包含text字符的第一个对象

    5. 定位伪元素 ::before

      

      driver.findElement(By.cssSelector("div#tsidButton>span")).click();

    6. class 中有空格

      代表多个class, 使用css定位可以用多个点将class隔开: driver.findElement(By.cssSelector("button.x-bth.module-icon"));

     

  • 相关阅读:
    DedeCMS图集上传图片报错,FILEID:X 错误处理办法
    AE10.0打开MxD或shp文件时提示“The specified path is invalid”
    未能加载AE的ESRI.ArcGIS.3Danalyst.dll等程序集
    Intel Parallel Studio 2011: error2350 FDI server error
    Android Google Map APIKey申请
    关于程序堆栈的解释
    Major and Minor Numbers (主次设备号)这个听说过
    linux字符设备驱动之LED
    linux下ioctl函数学习
    Some Important Data Structures
  • 原文地址:https://www.cnblogs.com/cherrysu/p/7815150.html
Copyright © 2020-2023  润新知