java工作复习——鼠标事件——action类——模拟鼠标从一个位置移动到另外一个位置

Posted 小白龙白龙马

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java工作复习——鼠标事件——action类——模拟鼠标从一个位置移动到另外一个位置相关的知识,希望对你有一定的参考价值。

package rjcs;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.List;

import org.apache.commons.io.FileUtils;
import org.openqa.selenium.TakesScreenshot;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.testng.annotations.Test;

import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import javax.imageio.ImageIO;

import org.openqa.selenium.OutputType;

import com.thoughtworks.selenium.SeleneseTestNgHelper;

public class qyjt 
{
    
    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.manage().window().maximize();         //最大化窗口
             
             Thread.sleep(5000);
        
             driver.get("https://www.baidu.com");                    //打开一个网址,方法一             
        
             Thread.sleep(5000);
             
             Actions action = new Actions(driver);
             
                     
             Thread.sleep(10000);  
             

             action.dragAndDrop(driver.findElementByLinkText("新闻"),driver.findElementByLinkText("设置")).perform();    //鼠标从一个位置移动到指定位置




//WebElement cs = driver.findElementByLinkText("设置"); //鼠标移动到指定位置。移动悬停 //action.moveToElement(cs).perform(); Thread.sleep(10000); }catch (Exception e) { e.printStackTrace(); }finally { driver.quit(); } } }

 

以上是关于java工作复习——鼠标事件——action类——模拟鼠标从一个位置移动到另外一个位置的主要内容,如果未能解决你的问题,请参考以下文章

java工作复习——鼠标事件——action类——模拟鼠标从一个位置移动到另外一个位置

java工作复习——键盘事件——action类——复制粘贴

鼠标键盘事件

java+selenium+new——模拟鼠标悬浮操作——action类

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

java+selenium+new——模拟——单击鼠标左键不释放以及释放的操作——action类