How can we test application updates using Calabash?

We used Calabash to test integration for our iOS application (also for Android testing).

Since we are working on v2 applications, there are certain scenarios that we would like to test from one version to another when updating. For example, this data is stored or that certain functions are automatically activated upon update.

Is there any way to do this?

+4
source share
1 answer

On the iOS side of Calabash, I recommend using the backdoor command for calabash to put your application in an β€œupdated” state.

, IAP.

Background: have not upgraded
  Given I have not upgrade to the pro version

Scenario:  after upgrading to pro i should see feature X
  When I upgrade to the pro version
  Then I see X

Android .

0

Source: https://habr.com/ru/post/1524419/


All Articles