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

Posted 小白龙白龙马

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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.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 ckqh 
{
    
    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);  
             
             
              action.keyDown(Keys.CONTROL).sendKeys("t").keyUp(Keys.CONTROL).perform();  //ctr+t 快捷方式新打开一个标签页
              
              
              driver.get("https://www.ifeng.com");

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

}

以上是关于java+selenium——键盘操作+快捷键ctrl+t——新打开一个标签页的主要内容,如果未能解决你的问题,请参考以下文章

13.Selenium鼠标和键盘操作模拟鼠标操作页面元素(了解)

Python+Selenium笔记(十四)鼠标与键盘事件

selenium+python之操作元素

python + selenium 模拟键盘升级版PyUserInput

键盘快捷键

java+selenium3模拟键盘操作