在硒3.141.59中,我尝试使用
Actions action = new Actions(driver);
action.keyDown(Keys.CONTROL).sendKeys(Keys.TAB).build().perform();
and
driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL +"t");
我无法打开新的标签页
最佳答案
您可以尝试使用以下代码:
((JavascriptExecutor) driver).executeScript("window.open('"+url+"','_blank');");
URL是一个变量,您可以使用自己的变量,也可以粘贴它的值。