xcodeOrgId is not part of XCUITestOptions?

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. :slightly_smiling_face:

Use setXcodeCertificate(XcodeCertificate cert) method to provide xcode certificate parameters.

Not sure regarding setBrowser one. There is withBrowserName method though, which allows to provide the browserName option.

1 Like