I\'m trying to run chrome headless with my robot framework tests suites. I managed to do it independtly with python using selenium as follows:
options = webd
You can now use aliases:
*** Settings ***
Library SeleniumLibrary
*** Test Cases ***
Firefox
Open Browser http://robotframework.org/ headlessfirefox
Capture Page Screenshot
[Teardown] Close All Browsers
Chrome
Open Browser http://robotframework.org/ headlesschrome
Capture Page Screenshot
[Teardown] Close All Browsers
See https://github.com/robotframework/SeleniumLibrary/pull/1011