执行Selenium脚本时,我们往往不需要盯着电脑看脚本的执行情况,再或者我们的脚本可能被执行在一个无GUI的Linux机器上,那么这时我们都可以使用浏览器的Headless模式来执行。

Headless Chrome

chrome版本要求:

  • windows 60+
  • mac/linux 59+

chromedriver版本要求:

  • 2.30+
  1. @Test
  2. public void OpenChromeTest() {
  3. String path = System.getProperty("user.dir");
  4. System.setProperty("webdriver.chrome.driver", path + "\\drivers\\chromedriver.exe");
  5. ChromeOptions chromeOptions = new ChromeOptions();
  6. // 设置为 headless 模式 (必须)
  7. chromeOptions.addArguments("--headless");
  8. // 设置浏览器窗口打开大小 (非必须)
  9. chromeOptions.addArguments("--window-size=1920,1080");
  10. WebDriver driver = new ChromeDriver(chromeOptions);
  11. driver.get("http://www.baidu.com");
  12. String title = driver.getTitle();
  13. System.out.println(title);
  14. driver.quit();
  15. }

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 文件,添加如下

  1. <!-- https://mvnrepository.com/artifact/org.webjars.npm/phantomjs -->
  2. <dependency>
  3. <groupId>org.webjars.npm</groupId>
  4. <artifactId>phantomjs</artifactId>
  5. <version>2.1.7</version>
  6. </dependency>

代码例子:

  1. @Test
  2. public void pjsTest() throws InterruptedException {
  3. System.setProperty("phantomjs.binary.path", "./drivers/phantomjs.exe");
  4. WebDriver driver = new PhantomJSDriver();
  5. driver.get("http://www.baidu.com");
  6. String title = driver.getTitle();
  7. System.out.println(title);
  8. driver.quit();
  9. }

headless Firefox

Firefox版本要求:

  • windows/mac 56+
  • linux 55+

geckodriver

  • 建议都用最新版
  1. import org.openqa.selenium.By;
  2. import org.openqa.selenium.WebElement;
  3. import org.openqa.selenium.firefox.FirefoxBinary;
  4. import org.openqa.selenium.firefox.FirefoxDriver;
  5. import org.openqa.selenium.firefox.FirefoxOptions;
  6. import java.util.concurrent.TimeUnit;
  7. public class HeadlessFirefoxSeleniumExample {
  8. public static void main(String [] args) {
  9. FirefoxBinary firefoxBinary = new FirefoxBinary();
  10. firefoxBinary.addCommandLineOptions("--headless");
  11. System.setProperty("webdriver.gecko.driver", "/opt/geckodriver");
  12. FirefoxOptions firefoxOptions = new FirefoxOptions();
  13. firefoxOptions.setBinary(firefoxBinary);
  14. FirefoxDriver driver = new FirefoxDriver(firefoxOptions);
  15. try {
  16. driver.get("http://www.google.com");
  17. driver.manage().timeouts().implicitlyWait(4,
  18. TimeUnit.SECONDS);
  19. WebElement queryBox = driver.findElement(By.name("q"));
  20. queryBox.sendKeys("headless firefox");
  21. WebElement searchBtn = driver.findElement(By.name("btnK"));
  22. searchBtn.click();
  23. WebElement iresDiv = driver.findElement(By.id("ires"));
  24. iresDiv.findElements(By.tagName("a")).get(0).click();
  25. System.out.println(driver.getPageSource());
  26. } finally {
  27. driver.quit();
  28. }
  29. }
  30. }

Headless Chrome 和 Headless Firefox 的出现是为了取代PhantomJS。 为啥呢?因为PhantomJS并非真在的浏览器,跟真实浏览器还存在一定的差异。当然除了上面介绍的三种无头模式外,Selenium 还自带了一个HttpUnit的无头模式(WebDriver driver = new HtmlUnitDriver())同样并非真在浏览器,而且对JS支持不好,一般很少用到。

详细见个人博客:http://www.jianshu.com/p/b01de206a0d7