Seleium定位页面元素方法


一、使用ID定位

driver.findElement(By.id("userName"));


2.使用name定位

driver.findElement(By.name("password"));


3.使用链接的全部文字定位

driver.findElement(By.linkText("baidu"));


4.使用部分链接文字定位

driver.findElement(By.partialLinkText("baidu"));


5.使用XPath定位

driver.findElement(By.xpath("//*[@id='kw']"));


6.使用CSS方式定位

//使用绝对路径定位
driver.findElement(By.cssSelector("html >body >div >input[type='button']"));
//使用相对路径定位
driver.findElement(By.cssSelector("input[type='button']"));
//还有其他方式,以后补充


7.使用Class名称定位

driver.findElement(By.className("tight"));


8.使用标签名称定位

driver.findElement(By.tagName("a"));


9.使用JQuery定位


你可能感兴趣的:(selenium)