-
Notifications
You must be signed in to change notification settings - Fork 222
Description
What App Center service does this affect?
iOS Simulators
Describe the bug
I have a Xamarin UI test project with tests apps on iOS and Android simulators.
Recently I had to update xCode (to 10.2) and since the update I can no longer start the iOS app on the simulator from my UI Test project. I just get the error TestFixtureSetUp failed in "myTestProject”.
To Reproduce
The app is started as follows:
public override IApp StartApp(AppDataMode ClearAppData)
{
return ConfigureApp
.iOS
.InstalledApp("myAppNAme")
.DeviceIdentifier(123456-123456)
.PreferIdeSettings()
.EnableLocalScreenshots()
.WaitTimes(new WaitTimes())
.Debug()
.StartApp(ClearAppData);
}
And this command returns the following error/exception: Unable to determine simulator version for 123456-123456
Expected behavior
I expect the iOS simulator to be started. The simulator ID is good. I can see it listed when I list my iOS simulators. And it says that the simulator is Booted. This all worked fine before the xCode update.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
- OS: MacOS 10.14.4
- Xamarin: 7.8.3