首页 > 代码库 > Selenium如何在浏览器新开一个Tab

Selenium如何在浏览器新开一个Tab

实现如何在浏览器中新开一个tab,并输入url.

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

import org.openqa.selenium.Keys;


      WebElement element = null;

      String url="http://www.baidu.com";

        try {
            element = driver.findElement(By.tagName("body"));
            element.sendKeys(Keys.CONTROL + "t");

            driver.get(url);
            
        } catch (Exception e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }