使用控件T打开新选项卡Selenium 3.0和geckodriver不起作用

时间:2017-12-23 18:32:16

标签: geckodriver selenium3

使用Keys.CTRL + t,没有在带有gecko驱动程序的Selenium 3.0中打开新选项卡

driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL +"t");

1 个答案:

答案 0 :(得分:0)

一旦我尝试了机器人,就像 -

try{
        Robot robot = new Robot();
        robot.keyPress(KeyEvent.VK_CONTROL);
        robot.keyPress(KeyEvent.VK_T);
    }catch (AWTException e){
        e.printStackTrace(); // Or do whatever in here
    }

我不确定这里的钥匙(VK_CONTROL和VK_T),这是你必须找到的,但它对我有用。 附: 可能,您必须在之后释放密钥。