XPath编写规则学习
 
辅助工具:firefox安装findbugs,view Xpath
firefox :Xpath验证方式:$x("xpath"); 粘贴xpath语句回车即可
 
定位:
1、依靠自己属性,文本定位:
   //td[text()='test']
   //div[contains(@class,'test')]
   //input[@type='radio' and @value='1']
   //span[@name='bruce' and text()='bruce2'] 或 //span[@name='bruce'][ text()='bruce2'] --and关键字
   //span[@name='bruce' or text()='bruce2'] --or关键字
 
2、依靠父节点定位:
  //div[@class='test mytest']/div
  //div[@id='test']/div
 
3、依靠子节点定位
  //div[div[@id='test']] --寻找含有id=test的div的div
  //div[div[@name='test']]
  //div[p[@id='test']]
 
4、混合型定位
  //div[div[@name='test']]/img
  //td[a//font[contains(text(),'test')]]//input[@type='checkbox']
 
5、高级方法
       
   (1)following-sibling ---寻找紧跟定位到的元素的下一个元素
   例子://input[@id='1234']/following-sibling=input --定位紧跟id=1234的下一个的input元素,同级有效
             //input[@id='1234']/following-sibling::input ,input后可再跟条件
 
   (2)preceding-sibling ---寻找紧跟定位到的元素的上一个元素
   例子://input[@id='123']/preceding-sibling=span --定位紧跟id=123的上一个span元素
             //input[@id='1234']/preceding-sibling::input ,input后可再跟条件
 
     (3)starts-with --判断是否以某关键字开头
      例子://input[starts-with(@id,'test')]
     (4)contains -- 是否包含某关键字
       例子: //td[a//font[contains(text(),'test')]]//input[@type='checkbox']
     (5)not ---不包含某关键字
        例子://input[not(@id='1234')]
                  //span[not(contaions(text(),'xpath'))]
 
6、索引关键字,position,last
    (1)position()=2
             position()>3
             position()<5
       
      例子://div[@id='test']/span[2]或
                //div[@id='test']/span[position()=2] --正数第2个span
 
      (2)last()-1
 
       例子://div[@id='test']/span[last()-2] --倒数第2个span元素
 
7、根据属性定位
  //div[@class] --查找含有class属性的div
  //div[@class='test'] --查找含有class属性且class属性值为test的的div元素
 
8、不常用关键字
     (1)substring,语法:substring(str,start_postion,length) ,从1开始计算
           例子://div[@id='test']/span[substring(@name,3,5)='bruce'] --找name的第三位开始总共5位字母为bruce的span
 
     (2)substring-before ,语法:substring-before(str,substr)
           例子://div[@id='test']/span[substring-before(@class,'-')='spanclass'] --查找分割关键字前面的字符为spanclass的span
 
     (3)substring-after,语法:substring-after(str,substr)
            例子://div[@id='substring']/span[substring-after(@class,'-')='spanclass'] --查找分割关键字后面的字符为spanclass的span
 
9、通配符:*
      //span[@*='bruce']
      //*[@*='bruce']
      //*[@name='bruce']
 
10、axes 轴
   (1)parent 父节点
          例子://div[span[text()='+++test']]/parent::div[contaions(text(),'test')] --查找含有span的text为+++test的的div的父节点
                    //div[span[text()='+++test']]/parent::div/span[contaions(text(),'test')]
 
   (2)ancestor 祖先节点
          例子://div[span[text()='+++test']]/ancestor::div
     
   (3)descendant 孙子节点
           例子://div[span[text()='+++test']]/descendant::div --会将该节点下的所有div打印出来
                      //div[span[text()='+++test']]/descendant::div/span[contaions(text(),'test')]
 
   (4)following 将当前节点下后面所有的指定节点取出
            例子://div[text()='current NodeA']/following::div --会将current NodeA后面的所有的div取出来,后续的div可再加条件判断
       
   (5)preceding 将当前节点下前面所有的指定节点取出
            例子://div[text()='current NodeA']/preceding::div --会将current NodeA前面的所有的div取出来,后续的div可再加条件判断

XPath编写规则学习的更多相关文章

  1. Mayi_XPath编写规则学习

    XPath编写规则学习   辅助工具:firefox安装findbugs,view Xpath firefox :Xpath验证方式:$x("xpath"); 粘贴xpath语句回 ...

  2. Selenium2学习-002-Selenium2 Web 元素定位及 XPath 编写演示示例

    此文主要对 Selenium2 的 Web 元素定位及 XPath 编写示例,敬请各位亲们参阅,共同探讨.若有不足之处,敬请各位大神指正,不胜感激! 通过 Firefox(火狐)浏览器的插件 Fire ...

  3. 元素定位-XPATH定位方法总结

    1.Xpath定位方法探讨 xpath是比较常用的一种定位元素的方式,因为它很方便,缺点是,消耗系统性能.如果Xpath使用的比较好,几乎可以定位到任何页面元素,而且受页面变化影响较小. 1.1.什么 ...

  4. Python+Selenium 利用ID,XPath,tag name,link text,partial link text,class name,css,name定位元素

    使用firefox浏览器,查看页面元素,我们以“百度网页”为示例 一.ID定位元素    利用find_element_by_id()方法来定位网页元素对象 ①.定位百度首页,输入框的元素 ②.编写示 ...

  5. 【转载】Xpath定位方法深入探讨及元素定位失败常见情况

    一.Xpath定位方法深入探讨 (1)常用的Xpath定位方法及其特点 使用绝对路径定位元素. 例如: driver.findElement(By.xpath("/html/body/div ...

  6. Xpath定位方法深入探讨及元素定位失败常见情况

    一.Xpath定位方法深入探讨 (1)常用的Xpath定位方法及其特点 使用绝对路径定位元素. 例如: driver.findElement(By.xpath("/html/body/div ...

  7. Hawk 3. 网页采集器

    1.基本入门 1. 原理(建议阅读) 网页采集器的功能是获取网页中的数据(废话).通常来说,目标可能是列表(如购物车列表),或是一个页面中的固定字段(如JD某商品的价格和介绍,在页面中只有一个).因此 ...

  8. Hawk 1.1 快速入门(链家二手房)

    链家的同学请原谅我,但你们的网站做的真是不错. 1. 设计网页采集器 我们以爬取链家二手房为例,介绍网页采集器的使用.首先双击图标,加载采集器: 在最上方的地址栏中,输入要采集的目标网址,本次是htt ...

  9. 【重磅开源】Hawk-数据抓取工具:简明教程

    Hawk-数据抓取工具:简明教程 标签(空格分隔): Hawk Hawk: Advanced Crawler& ETL tool written in C#/WPF 1.软件介绍 HAWK是一 ...

随机推荐

  1. 用js实现左右阴影的切换

    <!doctype html><html><head><meta charset="utf-8"><title>无标题文 ...

  2. Ubuntu 16.04 安装Mysql 5.7 踩坑小记

    title:Ubuntu 16.04 安装Mysql 5.7 踩坑小记 date: 2018.02.03 安装mysql sudo apt-get install mysql-server mysql ...

  3. 关于Web Audio API的入门

    Web Audio API提供了一个简单强大的机制来实现控制web应用程序的音频内容.它允许你开发复杂的混音,音效,平移以及更多. 可以先看一下MDN的这篇文章<Web Audio API的运用 ...

  4. java基本语法特殊点

    一.关系运算符 instanceof(类型比较运算符) example:a instanceof hello // hello是一个class ==与!=可以用于引用相等运算符( 二.数组 (数组是对 ...

  5. [转]What is a WebRTC Gateway anyway? (Lorenzo Miniero)

    [转]What is a WebRTC Gateway anyway? (Lorenzo Miniero) https://webrtchacks.com/webrtc-gw/ As I mentio ...

  6. 【Unity3D与23种设计模式】中介者模式(Mediator)

    GoF中定义: 定义一个接口来封装一群对象的互动行为 中介者通过移除对象之间的引用 以减少他们之间的耦合度 并且能改变它们之间的互动独立性 游戏做的越大,系统划分的也就越多 如事件系统,关卡系统,信息 ...

  7. Readiness 探测 - 每天5分钟玩转 Docker 容器技术(144)

    除了 Liveness 探测,Kubernetes Health Check 机制还包括 Readiness 探测. 用户通过 Liveness 探测可以告诉 Kubernetes 什么时候通过重启容 ...

  8. 基于synchronized实现的阻塞队列

    package com.lilei.pack09; import java.util.concurrent.ExecutorService; import java.util.concurrent.E ...

  9. 复习ACCESS注入

    0x00前言:在学校看完了ACCESS注入.但当时并没有电脑,所以做好了笔记 回到家自己搭建了一个有ACCESS注入的站进行练习,虽然这可能没有什么用处 毕竟现在大多的网站都有waf或安全狗.而且AC ...

  10. 笔记:Struts2 Action 非泛型集合元素类型转换

    局部类型转换文件 局部类型转换文件的文件名应为 ActionName-conversion.properties,其中 ActionName 是需要替换为 Action 的类名称,后面的 conver ...