Hi I have a Xamarin UI test project with tests apps on iOS and Android simulators.
Since today I had to update xCode 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”.
The app is started as follows:
return ConfigureApp
.iOS
.InstalledApp(installedApp)
.DeviceIdentifier(123456-123456)
.PreferIdeSettings()
.EnableLocalScreenshots()
.WaitTimes(new WaitTimes())
.Debug()
.StartApp(ClearData);
And this command returns the following error/exception: Unable to determine simulator version for 123456-123456
BUT the simulator ID is good. I can see it listed when I list my iOS simulators. And it says that the simulator is Booted.
I use the following nuget packages
1. NUnit 2.6.4
2. NUnit.Runners 2.6.4
3. NUnitTestAdapter 2.1.1
4. Specflow 1.9.0
5. Xamarin.UITest 2.2.5
This all worked fine (yesterday) before the update. Any ideas?
(Sorry... I cant seem to format the code other than making it bold)