Can't update calabash server version

Calabash server version update issue. The problem is that I can run basic tests that validate elements ... However, as soon as I try to "touch" the buttons, calabash returns

RuntimeError: could not parse response ''; the app may have crashed

The origin of the problem, I believe, is that my server version is old / incompatible. Not rocket science:

WARN: server version is incompatible with gem version. please update your server. https://github.com/calabash/calabash-ios/wiki/B1-Updating-your-Calabash-iOS-version

gem version: '0.14.3' 
min server version: '0.14.3'
server version: '0.9.169'

      

The link is out of date, but I have followed all the steps many times https://github.com/calabash/calabash-ios/wiki/Updating-your-Calabash-iOS-version . And yet, when I check the version, it is 0.9.169

irb(main):006:0> server_version['version']
"0.9.169"

      

Any help would be greatly appreciated! Thanks to

+2


source to share


1 answer


Finally decided!

It turns out this is all related to the callabash component in my Xamarin.

When I first started experimenting with tests a few months ago, I added a calabash component (image below)

Calabash component



When I started adding a few more tests, I still had the same component. As far as I can tell from this component. Then I tried to remove it and add it again, but I couldn't find it anymore.

It turns out it is now called the "Xamarin Cloud Test Agent". I installed this component and DONE.

Xamarin Test Cloud Agent

Hope this helps anyone.

+1


source







All Articles