zoukankan      html  css  js  c++  java
  • java+selenium+new——在使用ajax方式产生的浮动框中,单击选择某个关键字选项匹配并选择点击

    package rjcs;
    
    
    
    import java.util.*;
    
    import org.openqa.selenium.By;
    import org.openqa.selenium.JavascriptExecutor;
    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 xinkaishi 
    {
    
        
        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);
                 
                 
                 
                 driver.findElementById("kw").sendKeys("中国");
                 
                 Thread.sleep(5000);
                 
                 //driver.findElementByXPath("//*[@id='form']/div/ul/li[2]").click();
                 
                 
                 List<WebElement> suggetionOptions = driver.findElements(By.xpath("//*[@id='form']/div/ul/li"));
    
                 for ( WebElement element : suggetionOptions )
                 {
                     if ( element.getText().contains("中国人事考试网") )
                     {
                         System.out.println(element.getText());
                         element.click();
                         driver.findElementById("su").click();
                         break;
                     }
                 }
                 
                 
                 Thread.sleep(10000);
                 
                 
            }catch (Exception e) 
            {
                e.printStackTrace();
            }finally 
            {
                driver.quit();
            
             }
        }
        
        
        
    }

    执行结果:

    中国人事考试网

  • 相关阅读:
    48-最长不含重复字符的子字符串
    51-数组中的逆序对
    字符串的排列
    二叉树转链表
    求根
    构造二叉树
    二叉树中序遍历
    反转链表系列
    斐波那契系列
    f.lux
  • 原文地址:https://www.cnblogs.com/xiaobaibailongma/p/12293228.html
Copyright © 2011-2022 走看看