如何使用 Selenium WebDriver 在新标签中打开链接?


我们可以使用 Selenium 在新标签中打开一个链接。方法 Keys.chordsendKeys 可以用于此目的。Keys.chord 方法允许你同时传递多个键。

我们应发送 Keys.CONTROLKeys.ENTER 作为参数给 Keys.chord 方法。然后,完整字符串作为参数传递给 sendKeys 方法。最后,sendKeys 方法必须应用于通过 driver.findElement 方法识别的链接。

语法

String clicklnk = Keys.chord(Keys.CONTROL,Keys.ENTER);
driver.findElement(By.xpath("//*[text()='Privacy Policy']")). sendKeys(clicklnk);

示例

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;
public class OpenInNwTab{
   public static void main(String[] args) {
      System.setProperty("webdriver.chrome.driver",
      "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      driver.get("https://tutorialspoint.com/about/about_careers.htm");
      // wait of 4 seconds
      driver.manage().timeouts().implicitlyWait(4, TimeUnit.SECONDS);
      // Keys.Chord string
      String clicklnk = Keys.chord(Keys.CONTROL,Keys.ENTER);
      // open the link in new tab, Keys.Chord string passed to sendKeys
      driver.findElement(
      By.xpath("//*[text()='Privacy Policy']")).sendKeys(clicklnk);
   }
}

输出

更新于: 30-11-2020

9 千+ 浏览量

开启你的职业生涯

完成课程认证

立即开始
广告