sauce_bindings icon indicating copy to clipboard operation
sauce_bindings copied to clipboard

[java] allow configurations to be used with a browser string value

Open titusfortner opened this issue 3 years ago • 0 comments

I don't know how I feel about this. People doing parameterized platform execution can not currently use the new syntax. This would allow them to do it, but I'm not sure if it is feature creep.

Somewhat tangentially I'm now wondering if we should have put all the methods into SauceOptionsBuilder class instead of having them on SauceOptions directly. I can't remember if we considered this and rejected it or just overlooked it:

SauceOptions options = SauceOptionsBuilder.chrome().setChromeThingOne().setChromeThingTwo().build();
SauceOptions options = SauceOptionsBuilder.usingBrowser("chrome").setChromeThingOne().setChromeThingTwo().build();

titusfortner avatar Jul 21 '21 21:07 titusfortner