zoukankan      html  css  js  c++  java
  • Selenium常用API的使用java语言之12-定位一组元素

    在第(五)节我们已经学习了8种定位方法, 那8种定位方法是针对单个元素定位的, WebDriver还提供了另外8种用于定位一组元素的方法。

    import org.openqa.selenium.By;
    ......
    findElements(By.id())
    findElements(By.name())
    findElements(By.className())
    findElements(By.tagName())
    findElements(By.linkText())
    findElements(By.partialLinkText())
    findElements(By.xpath())
    findElements(By.cssSelector())
    

    定位一组元素的方法与定位单个元素的方法类似,唯一的区别是在单词 findElement 后面多了一个 s 表示复数。

    import org.openqa.selenium.By;
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.chrome.ChromeDriver;
    import java.util.List;
     
     
    public class ElementsDemo {
     
      public static void main(String[] args) throws InterruptedException {
     
        WebDriver driver = new ChromeDriver();
        driver.get("https://www.baidu.com/");
     
        WebElement search_text = driver.findElement(By.id("kw"));
        search_text.sendKeys("selenium");
        search_text.submit();
        Thread.sleep(2000);
     
        //匹配第一页搜索结果的标题, 循环打印
        List<WebElement> search_result = driver.findElements(By.xpath("//div/div/h3"));
     
        //打印元素的个数
        System.out.println(search_result.size());
     
        // 循环打印搜索结果的标题
        for(WebElement result : search_result){
            System.out.println(result.getText());
        }
     
        System.out.println("-------我是分割线---------");
     
        //打印第n结果的标题
        WebElement text = search_result.get(search_result.size() - 10);
        System.out.println(text.getText());
     
        driver.quit();
      }
    }
    

    打印结果:

    15
    selenium java 教程-90 天从入门到高薪「学习必看」
    python selenium 视频-90 天从入门到高薪「学习必看」
    Selenium - Web Browser Automation
    功能自动化测试工具——Selenium 篇
    Selenium Documentation — Selenium Documentation
    selenium + python 自动化测试环境搭建 - 虫师 - 博客园
    selenium_百度翻译
    Selenium_百度百科
    怎样开始用 selenium 进行自动化测试(个人总结)_百度经验
    Selenium 官网教程_selenium 自动化测试实践_Selenium_领测软件测试网
    Selenium - 开源中国社区
    selenium 是什么?_百度知道
    selenium-0 基础入学, 先就业后付款!
    selenium, 亚马逊官网, 正品低价, 货到付款!
    selenium java 教程-90 天从入门到高薪「学习必看」
    -------我是分割线---------
    selenium + python 自动化测试环境搭建 - 虫师 - 博客园
    
  • 相关阅读:
    HD1205吃糖果(鸽巢、抽屉原理)
    POJ3628 Bookshelf 2(01背包+dfs)
    poj1631Bridging signals(最长单调递增子序列 nlgn)
    【转】KMP算法
    Intern Day1
    记 MINIEYE C++应用开发实习生技术一面
    解决Mac下CLion无法编译运行多个cpp的问题
    记赛目科技C++开发工程师实习生技术面
    Git总结
    Docker学习大纲
  • 原文地址:https://www.cnblogs.com/zhizhao/p/11303312.html
Copyright © 2011-2022 走看看