首页 > 编程语言 > 详细

java+selenium——鼠标左击

时间:2020-01-19 19:40:08      阅读:78      评论:0      收藏:0      [点我收藏+]
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);
             
             driver.findElement(By.id("kw")).clear();
             driver.findElement(By.id("kw")).sendKeys("中国");
             
             Actions action = new Actions(driver);
             
             
             action.click(driver.findElement(By.id("su"))).perform();//单击
             
             //WebElement xs = driver.findElementById("su");
             //action.click(xs).perform();                          //单击
             


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

}

java+selenium——鼠标左击

原文:https://www.cnblogs.com/xiaobaibailongma/p/12215274.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!