In the previous articles, I introduce you to two different to perform web scraping with Java. in the first article, and in the article about handling heavy website. tools HtmlUnit PhantomJS Javascript This time we are going to introduce a new feature from , the mode. There was a rumor going around, that Google used a special version of Chrome for their crawling needs. I don’t know if this is true, but Google launched the headless mode for Chrome with Chrome 59 several months ago. Chrome headless This article is an excerpt from my new book Java Web Scraping Handbook The book will teach you the noble art of web scraping. From parsing HTML to breaking captchas, handling Javascript heavy website and many more. PhantomJS was the leader in this space, it was (and still is) heavy used for browser automation and testing. After hearing the news about Headless Chrome, the PhantomJS maintainer said that he was stepping down as maintainer because I quote “Google Chrome is faster and more stable than PhantomJS […]” It looks like Chrome headless is becoming the way to go when it comes to browser automation and dealing with Javascript-heavy websites. HtmlUnit, PhantomJS and the other headless browsers are very useful tools, the problem is they are not as stable as Chrome, and sometimes you will encounter errors that would not have happened with Chrome. Javascript Prerequisites Google Chrome > 59 Chromedriver Selenium In your add a recent version of Selenium: pom.xml org.seleniumhq.selenium selenium-java 3.8.1 < > dependency < > groupId </ > groupId < > artifactId </ > artifactId < > version </ > version </ > dependency If you don’t have Google Chrome installed, you can download it To install Chromedriver you can use brew on MacOS: here chromedriver brew install Or download it using the link below. There are a lot of versions, I suggest you to use the last version of Chrome and chromedriver. In this part, we are going to log into Hacker News, and take a screenshot once logged in. We don’t need Chrome headless for this task, but the goal of this article is only to show you how to run headless Chrome with Selenium. The first thing we have to do is to create a WebDriver object, and set the chromedriver path and some arguments: String chromeDriverPath = ; System.setProperty( , chromeDriverPath); ChromeOptions options = ChromeOptions(); options.addArguments( , , , ); WebDriver driver = ChromeDriver(options); // Init chromedriver "/Path/To/Chromedriver" "webdriver.chrome.driver" new "--headless" "--disable-gpu" "--window-size=1920,1200" "--ignore-certificate-errors" new The option is needed on Windows systems, according to the --disable-gpu documentation Chromedriver should automatically find the Google Chrome executable path if you have a special installation, or if you want to use a different version of Chrome, you can do it with: options.setBinary( ); "/Path/to/specific/version/of/Google Chrome" If you want to learn more about the different options, here is the Chromedriver documentation The next step is to perform a GET request to the Hacker News login form, select the username and password field, fill it with our credentials and click on the login button. Then we have to check for a credential error, and if we are logged in, then can take a screenshot. We have done this in a previous article, here is the full code: You should now have a nice screenshot of the Hacker News homepage while being authenticated. As you can see Chrome headless is really easy to use, it is not that different from PhantomJS since we are using Selenium to run it. As usual, the code is available in this . Github repository This article is an excerpt from my new book Java Web Scraping Handbook The book will teach you the noble art of web scraping. From parsing HTML to breaking captchas, handling Javascript heavy website and many more. Checkout the book ! Originally published at scrapingbee.com on January 18, 2019.