I am trying to write Selenium tests that check layout issues. For this I am using Selenium Webdriver on the Java side and phantomjs as the "browser". I want to use phantomjs because it is able to make screenshots of the actually rendered components.
By default phantomjs renders text using anti aliasing, and that makes it hard to scan texts (to find text baselines and to do simple OCR).
How can I tell phantomJS to not use anti aliasing?
I used the following dirty trick to disable phantomjs anti aliasing on Linux. PhantomJS is built using fontconfig, and this library looks for a file "fonts.conf" in several locations: see https://www.freedesktop.org/software/fontconfig/fontconfig-user.html.
By creating the following fonts.conf we can disable anti aliasing for fontconfig:
One of the locations is defined by an environment variable, according to the specs: $XDG_CONFIG_HOME/fontconfig/fonts.conf. So by creating a temp file like /tmp/phantomjs-config/fontconfig/fonts.conf with the above content, and then setting XDG_CONFIG_HOME to /tmp/phantomjs-config we tell fontconfig to read that file.
There is one problem though: the PhantomJSDriver class, by default, does not allow environment variables to be set. Which is sad, because the underlying worker code, PhantomWebDriverService, does allow this.
To solve this I created a small helper class in which I copied some protected methods from PhantomJSDriverService:
With this new code I can now create a PhantomJSDriver as follows:
Issues with the code
The most important issue with this code is that it might fail if there are fonts.conf files (like $HOME/.fonts.conf) that define anti aliasing. But for my test case this works OK.
The same trick also works for Headless Chrome ;)
To disable anti aliasing on headless chrome use the same code above to generate the fonts.conf file, then allocate a Chrome webdriver as follows: