I have a problem when running UITests for iOS applications with Xamarin. I clarify that Android apps run perfectly.
I work with a Cross-Platform project, giving the appropriate configuration in AppInitializer.cs
When executing the tests, I get the error in console:
SetUp: System.Exception: Unable to contact test backend running in app. A common cause is that the app is not properly linked with Calabash. Please verify that it includes the Calabash component.
I've been reviewing the Xamarin developer guides for days and I've made all the configurations I've seen and which could be the cause, such as adding the NuGet package called Xamarin Test Cloud Agent plus a snippet of code in AppInitialize.cs
to enable Calabash:
if ENABLE_TEST_CLOUD
Xamarin.Calabash.Start();
endif
but the problem persists.
Did anyone have the same problem?