I am trying to launch the Outlook app from LambdaTest using Appium’s desired capabilities. The session is not creating and getting 500 errors. Can someone let me know what’s the bundle ID for the Outlook app and please let me know if there are any gaps from the below-desired capabilities.
DesiredCapabilities caps = new DesiredCapabilities();
HashMap<String, Object> ltOptions = new HashMap<>();
ltOptions.put("user", userName);
ltOptions.put("accessKey", accessKey);
ltOptions.put("platformVersion", BaseRestServices.getConfigProperty("appium.platformVersion"));
ltOptions.put("deviceName", BaseRestServices.getConfigProperty("appium.deviceName"));
ltOptions.put("platformName", BaseRestServices.getConfigProperty("appium.platformName"));
ltOptions.put("isRealMobile", BaseRestServices.getConfigProperty("appium.isRealMobile"));
ltOptions.put("build", BaseRestServices.getConfigProperty("[appium.build](http://appium.build/)"));
ltOptions.put("name", BaseRestServices.getConfigProperty("[appium.name](http://appium.name/)"));
ltOptions.put("tunnel", BaseRestServices.getConfigProperty("appium.tunnel"));
ltOptions.put("tunnelName", BaseRestServices.getConfigProperty("appium.tunnelName"));
ltOptions.put("bundleId", "com.microsoft.office.outlook"); //Enter your app url
ltOptions.put("autoGrantPermissions", true);
ltOptions.put("devicelog", true);
ltOptions.put("network", true);
caps.setCapability("LT:options", ltOptions);
iosDriver = getIosDriver(commandExecutor);