I am trying to run headless Chrome using the following command on Ubuntu.
sudo -u test xvfb-run --server-args='-screen 0, 1024x768x16' google-chrome -start-maximized --disable-fre --enable-benchmarking --metrics-recording-only --remote-debugging-port=1234 > /dev/null &
Upon doing, ps -ef | grep Chrome
I get
test 17671 17670 0 15:49 pts/0 00:00:00 /bin/sh /usr/bin/xvfb-run --server-args=-screen 0, 1024x768x16 google-chrome -start-maximized --disable-fre --enable-benchmarking --metrics-recording-only --remote-debugging-port=1234
test 17691 17671 0 15:49 pts/0 00:00:00 /usr/bin/google-chrome -start-maximized --disable-fre --enable-benchmarking --metrics-recording-only --remote-debugging-port=1234
test 17694 17691 0 15:49 pts/0 00:00:00 /usr/bin/google-chrome -start-maximized --disable-fre --enable-benchmarking --metrics-recording-only --remote-debugging-port=1234
test 17696 1 0 15:49 pts/0 00:00:00 /opt/google/chrome/chrome --type=zygote
But I keep getting the error
Error: Connect DevTools
Wait timed out after 10094ms
Why is Devtools not up in this situation.
You should run Headless Chrome like this:
Take a look at Getting Start