zoukankan      html  css  js  c++  java
  • java+selenium+new——模拟鼠标悬浮操作——action类

    package rjcs;
    
    
    
    import java.util.*;
    
    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);
                 
                 
                 
                 Actions action = new Actions(driver);
                 
                 action.moveToElement(driver.findElementByLinkText("设置")).perform();     //鼠标悬浮在 设置  元素上面
                 
                 driver.findElementByClassName("setpref").click();      // 打开搜索设置
                            
                 
                 
                 Thread.sleep(10000);
                 
                 
            }catch (Exception e) 
            {
                e.printStackTrace();
            }finally 
            {
                driver.quit();
            
             }
        }
        
        
        
    }
  • 相关阅读:
    泛型为什么不用装箱拆箱
    net 自带cache
    泛型与非泛型的区别。
    java 魔术
    栈帧
    yii使用CUploadedFile上传文件
    yii上传图片、yii上传文件、yii控件activeFileField使用
    yii 验证码的使用
    mysql 分库分表
    全国省市区三级联动js
  • 原文地址:https://www.cnblogs.com/xiaobaibailongma/p/12285951.html
Copyright © 2011-2022 走看看