码迷,mamicode.com
首页 > 编程语言 > 详细

java+selenium+new——模拟鼠标右键操作——action类

时间:2020-02-09 09:25:51      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:ogr   https   bsp   max   int   import   style   web   bin   

技术图片

 

 

 

package rjcs;

import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;

public class a 
{
    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.get("https://www.baidu.com");  
             
             Thread.sleep(5000);
             
             
             
             Actions action = new Actions(driver);
             
             
             Thread.sleep(5000);  
             

             action.contextClick(driver.findElementByLinkText("地图")).perform();   //鼠标在某个元素上右击
             
        
             
             Thread.sleep(5000);  
             

             action.contextClick(driver.findElementById("kw")).perform();                  
        

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

 

java+selenium+new——模拟鼠标右键操作——action类

标签:ogr   https   bsp   max   int   import   style   web   bin   

原文地址:https://www.cnblogs.com/xiaobaibailongma/p/12285939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!