执行Selenium脚本时,我们往往不需要盯着电脑看脚本的执行情况,再或者我们的脚本可能被执行在一个无GUI的Linux机器上,那么这时我们都可以使用浏览器的Headless模式来执行。
Headless Chrome
chrome版本要求:
- windows 60+
- mac/linux 59+
chromedriver版本要求:
- 2.30+
@Test
public void OpenChromeTest() {
String path = System.getProperty("user.dir");
System.setProperty("webdriver.chrome.driver", path + "\\drivers\\chromedriver.exe");
ChromeOptions chromeOptions = new ChromeOptions();
// 设置为 headless 模式 (必须)
chromeOptions.addArguments("--headless");
// 设置浏览器窗口打开大小 (非必须)
chromeOptions.addArguments("--window-size=1920,1080");
WebDriver driver = new ChromeDriver(chromeOptions);
driver.get("http://www.baidu.com");
String title = driver.getTitle();
System.out.println(title);
driver.quit();
}
PhantomJS
PhantomJS是一款使用JavaScript API编写的Headless WebKit。它支持各种Web标准:DOM处理,CSS选择器,JSON,Canvas和SVG
PhantomJS环境准备
下载地址:http://phantomjs.org/download.html
解压获取bin目录下的PhantomJS.exe文件,并复制到工程路径下。
注意:如果Selenium版本<3.0,则需要配置Pom.xml 文件,添加如下:
<!-- https://mvnrepository.com/artifact/org.webjars.npm/phantomjs -->
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>phantomjs</artifactId>
<version>2.1.7</version>
</dependency>
代码例子:
@Test
public void pjsTest() throws InterruptedException {
System.setProperty("phantomjs.binary.path", "./drivers/phantomjs.exe");
WebDriver driver = new PhantomJSDriver();
driver.get("http://www.baidu.com");
String title = driver.getTitle();
System.out.println(title);
driver.quit();
}
headless Firefox
Firefox版本要求:
- windows/mac 56+
- linux 55+
geckodriver
- 建议都用最新版
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxBinary;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxOptions;
import java.util.concurrent.TimeUnit;
public class HeadlessFirefoxSeleniumExample {
public static void main(String [] args) {
FirefoxBinary firefoxBinary = new FirefoxBinary();
firefoxBinary.addCommandLineOptions("--headless");
System.setProperty("webdriver.gecko.driver", "/opt/geckodriver");
FirefoxOptions firefoxOptions = new FirefoxOptions();
firefoxOptions.setBinary(firefoxBinary);
FirefoxDriver driver = new FirefoxDriver(firefoxOptions);
try {
driver.get("http://www.google.com");
driver.manage().timeouts().implicitlyWait(4,
TimeUnit.SECONDS);
WebElement queryBox = driver.findElement(By.name("q"));
queryBox.sendKeys("headless firefox");
WebElement searchBtn = driver.findElement(By.name("btnK"));
searchBtn.click();
WebElement iresDiv = driver.findElement(By.id("ires"));
iresDiv.findElements(By.tagName("a")).get(0).click();
System.out.println(driver.getPageSource());
} finally {
driver.quit();
}
}
}
Headless Chrome 和 Headless Firefox 的出现是为了取代PhantomJS。 为啥呢?因为PhantomJS并非真在的浏览器,跟真实浏览器还存在一定的差异。当然除了上面介绍的三种无头模式外,Selenium 还自带了一个HttpUnit的无头模式(WebDriver driver = new HtmlUnitDriver())同样并非真在浏览器,而且对JS支持不好,一般很少用到。