Tell me how to run the browser in headless mode in Behave on LambdaTest.
Hello Devan,
You could easily run a headless mode test in Behave headless by offering it as a capability in config.json file.
Here is an example for Chrome:
> [
> {
> "platform": "Windows 10",
> "browserName": "chrome",
> "version": "latest",
> "build": "Behave Selenium Sample",
> "name": "Behave Sample Test",
> "headless" : True
> }
> ]
Download and configure the given GitHub repo: