Reputation: 49
I have developed a Xamarin UI test for my hybrid app (not written with Xamarin). It is an android app and i have used Visual Studio2015 for the c# based test script development.
Now i need to upload the tests to the Xamarin Test cloud ? Is it possible ? If Yes then How? Thanks.
Upvotes: 1
Views: 105
Reputation: 74144
Since the mobile app was development outside of Visual Studio
/ Xamarin Studio
, you need to submit the test and a release build of the .apk
via the cmd-line tool (test-cloud.exe
):
test-cloud.exe submit <PATH-TO-APK> <TEAM API KEY> --devices=<DEVICES> --assembly-dir=<PATH-TO-TEST-ASSEMBLY-DIR> --user=<EMAIL>
Consult the following link for details concerning app signing.
Upvotes: 3