How to set window size using Chrome options with Java-Cucumber?

How can I set window size using chrome options with Java-Cucumber?

Hello Charity,

You can use the syntax below to set window size using Chrome options with Java-Cucumber:

 ChromeOptions op = new ChromeOptions();
      //window size set
      op.addArguments("window-size=500,250");