How to set window-size to fullscreen for headless-chrome using chrome options?

hemanik :

When executing UI tests, I get an error that selenium doesn't support automatic window resizing for chromedriver, which results in tests failing.

Is there a way to set this using chrome-options for headless-chrome ?

I have tried the following,

ChromeOptions options = new ChromeOptions();
options.addArguments("--start-maximized");

Also, replacing "--start-maximized" with "--start-fullscreen" and "--kiosk".

But none of the above worked for me, the only option that works for me is "--window-size=width,height".

I do not want to hard-code values for width and height, is there some way I can do this to set fullscreen ?

hemanik :

The problem is that headless mode is meant to be used on computers without screens, so there's no way for it to figure out what size your screen is even if you have one. The only way is for you to pass that information to the browser with --window-size.

The default window size and display size in headless mode is 800x600 on all platforms.

So the maximized window size is not applicable for chrome-headless and needs to be explicitly set by users, if required.

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=442168&siteId=1