I am using calabash-android to test my app. In its pre-defined steps it has a bunch of "wait" steps, but it only has "Then I wait for view with id to appear".
I need to wait for a string R.string.final_result
to appear.
I am wondering, how can I wait for a string with id to appear? I need to wait for the id of string resource ,because the string could be localized in my app.
If it is impossible to do with pre-defined steps, how can I create a step to do it?