gpt4 book ai didi

java - 如何使用selenium和java在firefox中打开一个新的空选项卡

转载 作者:行者123 更新时间:2023-12-02 01:41:51 25 4
gpt4 key购买 nike

我已经尝试过这个:

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

但它没有添加任何新选项卡。

也尝试过这个:

((JavascriptExecutor) driver).executeScript("window.open();");

但它会打开一个新窗口,而不是使用同一个窗口。

我该怎么做?

最佳答案

我认为使用 Robot 类会更容易。

try{
Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_T);
robot.keyRelease(KeyEvent.VK_CONTROL);
robot.keyRelease(KeyEvent.VK_T);
} catch(Exception e) { }

关于java - 如何使用selenium和java在firefox中打开一个新的空选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57484194/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com