Selenium_博客已迁移自动化测试自动化测试

通过Headless Chrome/Firefox执行Selen

2017-08-08  本文已影响4107人  博客已迁移I米阳

以往我们执行Selenium脚本,如果为了提高脚本的执行速度,我们可能会考虑使用HtmlUnit 或者更多的使用PhantomJS这类的Headless 浏览器,但这些工具要嘛对JavaScript支持不好,要嘛对web的支持不好,占用资源多,跟真实浏览器存在一定的差异等等问题。

现在,Chrome 浏览器提供了Headless Chrome,简单说我们也可以在不打开chrome GUI的情况在Chrome下执行我们的Selenium脚本。

如果想使用Headless Chrome 对Chrome版本有一定的要求,从官方文档我们可以看出,mac和linux环境要求chrome版本是59+,而windows版本的chrome要求是60+,同时chromedriver要求2.30+版本

Paste_Image.png

假设你环境都已经具备了,那么我直接运行下面的Java Demo例子感受下:

    @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();
    }

脚本运行我们确实没看到有任何的chrome浏览器启动,但是控制台也准确输出了:

Paste_Image.png

如果你想了解更多关于headless chrome,可以查看官网文档:https://developers.google.cn/web/updates/2017/04/headless-chrome

最后最后,从Firefox官方上看到,火狐也将推出headless模式,预计在linux环境的55版本推出,并Firefox 56版本在全平台推出。值得期待!

16/8/2017 补充
  这几天老有人问起,如果对于通过Grid 服务启动的chrome,该如何去设置chrome。 这里就简单给几行代码演示下:

ChromeOptions chromeOptions = new ChromeOptions();
chromeOptions.addArguments("--headless");
DesiredCapabilities dc = DesiredCapabilities.chrome();
dc.setCapability(ChromeOptions.CAPABILITY, chromeOptions);
WerbDriver driver = new RemoteWebDriver(new URL(hubURL), dc);

19/9/2017 补充
偶然已经发现火狐开发者网站上已经有headless Firefox 的Demo例子了,但是从文章看window/mac 版本需要火狐版本56+,linux版本55+。
https://developer.mozilla.org/en-US/Firefox/Headless_mode
以下我直接拷贝站点上的java例子以供大家参考:

package com.mozilla.example;

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();
   }
 }
}

欢迎关注个人公众号:


个人公众号
上一篇下一篇

猜你喜欢

热点阅读