web-component-tester: Support headless mode
This adds support for running chrome in headless mode.
Support for running firefox in headless mode should work but currently
doesn't.
Moreover, i've added browser option handling to wct [1].
[1] https://github.com/Polymer/wct-local/commit/b8388d1a8d3fa907a205dc1763524a13b017e780
Bug: Issue 8023
Change-Id: I47cd9cd69fc78739219223c74d7b2edf2f97d6c7
diff --git a/polygerrit-ui/app/embed_test.sh b/polygerrit-ui/app/embed_test.sh
index adcc653..d482796 100755
--- a/polygerrit-ui/app/embed_test.sh
+++ b/polygerrit-ui/app/embed_test.sh
@@ -14,6 +14,15 @@
cp $index $t/test/
cp $tests $t/test/
+if [ "${WCT_HEADLESS_MODE:-0}" != "0" ]; then
+ CHROME_OPTIONS=[\'start-maximized\',\'headless\',\'disable-gpu\',\'no-sandbox\']
+ # TODO(paladox): Fix Firefox support for headless mode
+ FIREFOX_OPTIONS=[\'\']
+else
+ CHROME_OPTIONS=[\'start-maximized\']
+ FIREFOX_OPTIONS=[\'\']
+fi
+
# For some reason wct tries to install selenium into its node_modules
# directory on first run. If you've installed into /usr/local and
# aren't running wct as root, you're screwed. Turning this option off
@@ -33,7 +42,11 @@
},
'plugins': {
'local': {
- 'skipSeleniumInstall': true
+ 'skipSeleniumInstall': true,
+ 'browserOptions': {
+ 'chrome': ${CHROME_OPTIONS},
+ 'firefox': ${FIREFOX_OPTIONS}
+ }
},
'sauce': {
'disabled': true,