jBrowserDriver基于 WebKit 无图形化浏览器
jBrowserDriver 是一款采用纯 Java 编写的无图形化浏览器,基于 WebKit,和 Selenium 兼容。
通过Maven安装:
<dependency> <groupId>com.machinepublishers</groupId> <artifactId>jbrowserdriver</artifactId> <version>0.16.1</version> </dependency>
使用示例代码:
import org.openqa.selenium.WebDriver;
import com.machinepublishers.jbrowserdriver.Timezone;
import com.machinepublishers.jbrowserdriver.JBrowserDriver;
import com.machinepublishers.jbrowserdriver.Settings;
public class Example {
  public static void main(String[] args) {
    // You can optionally pass a Settings object here,
    // constructed using Settings.Builder
    JBrowserDriver driver = new JBrowserDriver(Settings.builder().
      timezone(Timezone.AMERICA_NEWYORK).build());
    // This will block for the page load and any
    // associated AJAX requests
    driver.get("http://example.com");
    // You can get status code unlike other Selenium drivers.
    // It blocks for AJAX requests and page loads after clicks 
    // and keyboard events.
    System.out.println(driver.getStatusCode());
    // Returns the page source in its current state, including
    // any DOM updates that occurred after page load
    System.out.println(driver.getPageSource());
    // Close the browser. Allows this thread to terminate.
    driver.quit();
  }
}评论
