Headless Chrome

So if you hadn’t heard, Google has implemented a headless option for Chrome. This will be included from version 59, however you can download it now and a play using the Canary install.

So I did just that. I downloaded the latest ChromeDriver, wasn’t sure if a new version was required or not, digging a little bit deeper after the event, I realised it wasn’t, but seems like a good practice when trying out new things. Then I downloaded and installed the Canary Chrome, nice thing about Canary Chrome is it remains a seperate app, so doesn’t interfere with your existing chrome.

Then from a quick google, I discovered the argument for headless, is well ‘–headless’, easy!

So I know from existing use cases that you can pass arguments to ChromeDriver using ChromeOptions, so I created a ChromeOptions in my code and passed in the argument ‘–headless’.
Now as mentioned above, Canary Chrome installs a seperate app, so this reminds me, that I have to instruct ChromeDriver on where to find this binary.

So again, we can do this using ChromeOptions, and specifically the setBinary method. Now the first time I did this, I set the path to be “/Applications/Google Chrome Canary.app”, this didn’t work. So I dug a little bit deeper into the content of the package and discovered that I needed to go all the way to the executable, which turns out to be “/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary”, and boom it worked!

I then thought I’d instruct WebDriver to take a ScreenShot so I could indeed see if it was working, alas this functionality isn’t available on a Mac yet, but I read here, that it does indeed work on Linux.

So here is plain pretty dull Java code, but it does the trick and runs successfully using Chrome headlessly!

Now, historically I’m not a fan of headless browsers. If I’m going to go the expense of automating on the UI, I want those to execute on a browser that my users actually use, non of my users use a headless browser!

This may change with headless chrome though, may. I say this because, in the past, most of the headless options were standalone tools, seperate from the common browsers, such as HTMLUnit or PhantomJS. Also if you hadn’t seen it looks like PhantomJS will no longer be supported as the project lead stepped down. So I think once it’s more stable and available in standard Chrome, I’ll do some experiments against it to see what the gains are, or aren’t as the case may be. Plus I’ll see if I can find some information on the internals to see how much it differs from how Chrome with a head works.

Few useful links I found since writing:

Comments