java+selenium——键盘操作+复制粘贴(actions方法)

参考网址:https://blog.csdn.net/u011541946?t=1

package rjcs;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.List;
import org.openqa.selenium.interactions.Actions;
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.Keys;
import org.openqa.selenium.WebElement;
import org.testng.annotations.Test;
import org.openqa.selenium.*;
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(5000);  

             driver.findElementById("kw").sendKeys("seleniuml");

             Thread.sleep(5000);  

             action.sendKeys(driver.findElementById("kw"),Keys.BACK_SPACE).perform();    //删除多于的l字母

             driver.findElementById("kw").click();

              action.keyDown(Keys.CONTROL).sendKeys("a").keyUp(Keys.CONTROL).perform();
              action.keyDown(Keys.CONTROL).sendKeys("c").keyUp(Keys.CONTROL).perform();

             //driver.findElementById("kw").sendKeys(Keys.chord(Keys.CONTROL, "a"));
             //driver.findElementById("kw").sendKeys(Keys.chord(Keys.CONTROL, "c"));

             driver.findElementById("kw").click();

             driver.findElementById("kw").sendKeys("+");

             driver.findElementById("kw").click();

             //driver.findElementById("kw").sendKeys(Keys.chord(Keys.CONTROL, "v"));
             action.keyDown(Keys.CONTROL).sendKeys("v").keyUp(Keys.CONTROL).perform();

             Thread.sleep(5000);  

             driver.findElementById("su").sendKeys(Keys.ENTER);;

             Thread.sleep(10000);  

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

         }
   }

}

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

时间: 2024-10-06 22:38:33

java+selenium——键盘操作+复制粘贴(actions方法)的相关文章

java+selenium——键盘操作+复制粘贴(keys类)

在Keys类下有一个方法叫chord(参数1,参数2),在键盘输入事件也就是多个键同时按下的效果. package rjcs; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.List; import org.openqa.selenium.interactions.Actions; import org.apache.commons.io.FileUtils; import org.o

java+selenium——键盘操作+快捷键ctrl+t——新打开一个标签页

package rjcs; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.List; import org.openqa.selenium.interactions.Actions; import org.apache.commons.io.FileUtils; import org.openqa.selenium.TakesScreenshot; import org.openqa.

selenium键盘操作

经常使用到的键盘操作:send_keys(Keys.BACK_SPACE) 删除键(BackSpace)send_keys(Keys.SPACE) 空格键(Space)send_keys(Keys.TAB) 制表键(Tab)send_keys(Keys.ESCAPE) 回退键(Esc)send_keys(Keys.ENTER) 回车键(Enter)send_keys(Keys.CONTROL,'a') 全选(Ctrl+A)send_keys(Keys.CONTROL,'c') 复制(Ctrl+C

远程服务器不能复制粘贴解决方法

今天使用远程桌面连接登陆服务器,发现不能在本地电脑和远程服务器之间复制粘贴文件了,复制粘贴文本也不行. 网上搜了一下,主要有两种情况: 1.复制粘贴功能原本可以用,突然失灵了 2.从头到尾都无法使用这个复制粘贴功能 针对第一种情况,只需重启一下rdpclip.exe就可以了. 步骤: 1.打开任务管理器,查看进程,如果有 rdpclip.exe 进程,先关闭该进程 2.开始->运行->rdpclip.exe,重新运行此程序,恢复正常 如果是第二种情况,打开本机的远程桌面连接,按照下图所示,勾选

java+selenium+new——模拟键盘操作——复制、粘贴——action类

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 voi

java+selenium+new——操作单选下拉列表——打印每一个选项——3种方法选中某一个选项——select类

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

java+selenium+new——操作多选下拉列表——选中、取消——select类

package rjcs; import java.util.List; 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 ddddd { public s

java+selenium+new——操作单选下拉列表——select类

package rjcs; 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("webdr

java selenium (十) 操作浏览器

本篇文章介绍selenium 操作浏览器 阅读目录 浏览器最大化 前进,后退, 刷新 public static void testBrowser(WebDriver driver) throws Exception { driver.get("http://www.cnblogs.com/tankxiao"); Thread.sleep(5000); // 浏览器最大化 driver.manage().window().maximize(); driver.navigate().to