java+selenium+new——在使用ajax方式产生的浮动框中,单击选择某个关键字选项(通过索引)——索引从1开始——因为浮动内容总是发送变化,可以通过索引进行选择

 

 

package rjcs;



import java.util.*;

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();

Thread.sleep(
10000); }catch (Exception e) { e.printStackTrace(); }finally { driver.quit(); } } }

 

posted @ 2020-02-10 22:28  小白龙白龙马  阅读(180)  评论(0编辑  收藏  举报