Hi,
Iphone with IOS 10.3 is getting restarted most of the time while launching driver in Appium Studio 10.9.82
Please find the below code, After trying to launch the IOSdriver its restarting Iphone devices most of the time.
DesiredCapabilities dc = new DesiredCapabilities();
dc.setCapability(SeeTestCapabilityType.DEVICE_QUERY, "@os='ios'");
dc.setCapability(MobileCapabilityType.NO_RESET, true);
dc.setCapability(MobileCapabilityType.NEW_COMMAND_TIMEOUT, 300);
dc.setCapability(IOSMobileCapabilityType.BUNDLE_ID, appPackage);
dc.setCapability(IOSMobileCapabilityType.KEEP_KEY_CHAINS, false);
driver = new IOSDriver(new URL("http://localhost:4723/wd/hub"), dc);