博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Selenium2(WebDriver)总结(三)---元素定位方法
阅读量:6004 次
发布时间:2019-06-20

本文共 2303 字,大约阅读时间需要 7 分钟。

 元素定位的重要性不言而喻,如果定位不到元素谈何操作元素呢,webdrvier提供了很多种元素定位方法,如ID,Name,xpath,css,tagname等。

例如需要定位如下元素:

<input class="input_class" type="text" name="passwd" id="passwd-id" /> 

  • By.id:        WebElement element = driver.findElement(By.id("passwd-id"));
  • By.name:      WebElement element = driver.findElement(By.name("passwd"));
  • By.className      WebElement element = driver.findElement(By.className("input_class"));
  • By.xpath:      WebElement element =driver.findElement(By.xpath("//input[@id='passwd-id']")); 
  • By.cssSelector     WebElement element = driver.findElement(By.cssSelector(".input_class"));
  • By.linkText:

      //通俗点就是精确查询

      WebDriver driver = new FirefoxDriver();

driver.get("http://www.baidu.com/"); 
WebElement element = driver.findElement(By.linkText("百科"));

  • By.partialLinkText:

      //这个方法就是模糊查询

WebDriver driver = new FirefoxDriver();
driver.get("http://www.baidu.com/"); 
WebElement element = driver.findElement(By.partialLinkText("hao"));

  • By.tagName:

      WebDriver driver = new FirefoxDriver();

driver.get("http://www.baidu.com/");
String test= driver.findElement(By.tagName("form")).getAttribute("name");
System.out.println(test); 

 

在这些定位方法中,除开xpath和css,其它的定位方法都很容易理解和掌握如何使用,下面主要总结下xpath和css定位的一些方法和技巧。

 

一、XPATH

1、xpath和css选择器在firefox浏览器中都可以使用firepath插件来验证,如下图,可以选择xpath或css,然后在后面的输入框输入内容进行验证: 

2、xpath常用符号:

  /   表示绝对路径绝对路径是指从根目录开始

  //   表示相对路径

  .   表示当前层

  ..   表示上一层

  *   表示通配符

  @   表示属性

  []   属性的判断条件表达式

 3、xpath常用函数:

  contains ():  //div[contains(@id,'widget')],选择id属性中包含'widget'的div

  text():    //a[text()='hello world'],选择文本值为'hello world'的节点

  last():    选择最后一个

  starts-with():  //div[starts-with(@id,'common')] ,选择id属性中’common’开头的div节点  

  not():    否定

 PS:具体实例可参考我早先的一篇文章:

 4、如果以上还无法定位到元素,我们可以试试用xpath轴:

  参考:

 

二、CSS

1、css常用符号:

  #  表示id

  .  表示class

  >  表示子元素,层级

     一个空格也表示子元素,但是是所有的后代子元素,相当于xpath中的相对路径

 

例子:

<div class="input_class" type="text" name="passwd" id="passwd-id" /> 

  #input          选择id为passwd-id的节点

  .input_class        选择class为input_class的节点

  div#passwd-id>input   选择id为passwd-id的div下的所有的input节点

  div#passwd-id input    选择id为passwd-id的div下的所有的input节点

  div.input_class[name='passwd']     选择class为input_class并且name为passwd的节点

  div[name='passwd'][type='text']    选择name为passwd且type为text的节点

本文转自贺满博客园博客,原文链接:http://www.cnblogs.com/puresoul/p/4269236.html,如需转载请自行联系原作者。

你可能感兴趣的文章
web标准常见问题整理
查看>>
Linux下TCP连接过程总结
查看>>
[摘录]第三部分 IBM文化(1)
查看>>
Linux系统下给非root用户添加sudo权限
查看>>
DataGrid 完全攻略之三(实现删除全选或者全不选)
查看>>
第8章 “敏捷+”创新创业模式
查看>>
《征婚启示》
查看>>
SQL:插入指定标识列的数据时候的小错误
查看>>
字符串倒序
查看>>
VC++学习笔记(1)
查看>>
[游戏模版18] Win32 五子棋
查看>>
ORACLE 日期函数 MONTHS_BETWEEN
查看>>
安卓之页面跳转与传值和按钮事件
查看>>
STM32固件库详解
查看>>
echarts入门,5分钟上手写ECharts的第一个图表
查看>>
关于AJAX跨域调用ASP.NET MVC或者WebAPI服务的问题及解决方案
查看>>
Silverlight2 边学边练 之二 图形变换
查看>>
flex sdk中mx_internal function getTextField() 这种函数如何调用?
查看>>
ANE接入平台心得记录(安卓)
查看>>
[LeetCode] Binary Tree Right Side View 二叉树的右侧视图
查看>>