Reputation: 1217
I am running the test scripts for my app and I am getting the following error. Xamarin.UITest.dll version (1.3.8.0) and test-cloud.exe version (1.0.0.0) are incompatible
Any advise ?
Upvotes: 0
Views: 555
Reputation: 1217
I observed one thing.
The package folder for my solution has Xamarin.UITest of 1.0.0.0 and my UITest project had 1.3.8 version. Can you tell me that how to push it to github ?
Upvotes: 0
Reputation: 74094
There is a matching version test-cloud.exe
within each Xamarin.UITest.XXXXX
Nuget package and that is the .exe
that you should use to run your tests with.
/packages/Xamarin.UITest.1.3.8.1491-dev
.
├── Xamarin.UITest-License.rtf
├── Xamarin.UITest.1.3.8.1491-dev.nupkg
├── lib
│ ├── Xamarin.UITest.dll
│ └── Xamarin.UITest.xml
└── tools
└── test-cloud.exe
/packages/Xamarin.UITest.1.3.8
.
├── Xamarin.UITest-License.rtf
├── Xamarin.UITest.1.3.8.nupkg
├── lib
│ ├── Xamarin.UITest.dll
│ └── Xamarin.UITest.xml
└── tools
└── test-cloud.exe
Upvotes: 2