Hi, I have installed Appium 2.0 and have been using it without any issues. My question here is we have a set of capabilities inside XCUITestOptions which we use it like this:
XCUITestOptions iOSOptions = new XCUITestOptions();
iOSOptions.setDeviceName(“iPhone 14 Pro”);
So why don’t we see setBrowser(), setxcodeOrgId() and setxcodeSigningId() as part of XCUITestOptions? Currently we use .setCapability for xcodeOrgId and xcodeSigningId. Adding these types of capabilities under XCUITestOptions would make the code look symmetric. Just a thought.