zoukankan      html  css  js  c++  java
  • java+selenium+new——操作单选按钮——使用list容器进行遍历

    package rjcs;
    
    import java.util.List;
    
    import org.openqa.selenium.By;
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.firefox.FirefoxDriver;
    import org.openqa.selenium.interactions.Actions;
    import org.openqa.selenium.support.ui.Select;
    
    public class ddddd 
    {
    
        
        public static void main(String[] args)
        
        {
             System.setProperty("webdriver.firefox.bin","C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");    //设置火狐的安装路径,防止系统找不到
                
             FirefoxDriver driver = new FirefoxDriver();        //初始化FireFox浏览器实例,并打开浏览器
             
            try
            {
                 driver.manage().window().maximize();         //最大化窗口
                 
                 Thread.sleep(5000);    
                 
                 driver.navigate().to("http://www.baidu.com"); 
                 
                 Thread.sleep(5000);
                 
                 
                 
                 Actions action = new Actions(driver);
                 
                 action.moveToElement(driver.findElementByLinkText("设置")).perform();     //鼠标悬浮在 设置  元素上面
                 
                 driver.findElementByClassName("setpref").click();      // 打开搜索设置
                 
                 Thread.sleep(5000);
                 
                 
    
                 
                 //if ( !driver.findElementById("SL_1").isSelected() )   //如果 仅简体中文 没有选中  则被选中
                 
                   //  driver.findElementById("SL_1").click();
    
                 
                 
                 
                 List<WebElement> dx = driver.findElements(By.name("SL"));  //将name属性为SL的所有单选按钮对象,存储到一个list容器中
                 
                 for ( WebElement d : dx )      //使用for循环遍历list容器中的每一个单选按钮,查找value=2的单选按钮
                 {                              //如果查询到此按钮没有被选中,则单击选择
                     if ( d.getAttribute("value").equals("2"))
                     {
                         if ( !d.isSelected())
                             d.click();
                     }
                 }
                 
                 
                 
                 Thread.sleep(5000);
                 
                 
    
                 
                 
                 
                 
                 Thread.sleep(10000);
                 
                 
            }catch (Exception e) 
            {
                e.printStackTrace();
            }finally 
            {
                driver.quit();
            
             }
        }
        
        
        
    }
  • 相关阅读:
    JS OOP -03 JS类的实现
    python 配置文件__ConfigParser
    1103_ddt 数据处理
    1101_数据处理优化
    了解 ptyhon垃圾回收机制
    10_30_unittest
    10_27_unittest
    10_27_requests模块
    知识积累 哈。。。
    Python练习
  • 原文地址:https://www.cnblogs.com/xiaobaibailongma/p/12285324.html
Copyright © 2011-2022 走看看