zoukankan      html  css  js  c++  java
  • java+selenium+new——对某个元素进行双击(举例示例操作)

    package rjcs;
    
    import org.openqa.selenium.firefox.FirefoxDriver;
    import org.openqa.selenium.interactions.Actions;
    
    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("china");        //文本框里输入



    Thread.sleep(5000);



    Actions sj
    = new Actions(driver); sj.doubleClick(driver.findElementById("su")).build().perform(); //对按钮进行双击 Thread.sleep(10000); }catch (Exception e) { e.printStackTrace(); }finally { driver.quit(); } } }

  • 相关阅读:
    HDU 4508
    HDU 4503
    HDU 4532
    HDU 4544
    HDU 3167 KMP
    HDU 4542
    HDU 4528
    【70】自然语言处理与词嵌入
    【69】循环神经网络
    【68】一维和三维卷积
  • 原文地址:https://www.cnblogs.com/xiaobaibailongma/p/12275241.html
Copyright © 2011-2022 走看看