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
Please try the below. Run the keyword in Test setup
Running the tests in chrome headless
${chrome options} = Evaluate sys.modules['selenium.webdriver'].ChromeOptions() sys, selenium.webdriver
Call Method ${chrome options} add_argument headless
Call Method ${chrome options} add_argument disable-gpu
Create Webdriver Chrome chrome_options=${chrome options}