I am programmatically starting the AppiumDriverLocalService in my framework but the start() method is timing out. This is the code I am using to start my server:
AppiumDriverLocalService appiumDriverLocalService = AppiumDriverLocalService.buildDefaultService();
appiumDriverLocalService.start();
This is the output that I am getting:
Mar 31, 2017 01:04:12:444 PM…INFO [main]: Build Identifier: ef242266_d654_4418_9ad5_0957d577f0e7
Mar 31, 2017 01:04:12:457 PM…INFO [main]: Starting local instance of the Appium server…
[Appium] Welcome to Appium v1.6.4-beta
[Appium] Appium REST http interface listener started on 0.0.0.0:4723
After this it times out. It seems like the server is up and running but the iOS simulator is not starting. When I start the server from the terminal and point my IOSDriver to that instance it all works fine. I am seeing this error only when starting with AppiumDriverLocalService.
My Configuration:
OS: Max OS X El Capitan (10.11.6)
Appium Version: 1.6.4-beta
Java Client Version: 5.0.0-BETA6
Thanks,
Steve