List view click automation using calabash in Android -
i need automate list item click on android app. have googled lot , not found useful information. please me.thanks in advance.
then press list item number 2
is predefined step definition in calabash. using steps not best practice see here 1 reason because it´s not written in business language.
it´s better approach if you´re writing own steps using according calabash commands. due fact calabash open source can find implementaion of steps in github, in case:
then /^i press list item number (\d+)$/ |line_index| performaction('press_list_item', line_index, 0) end
from calabash repo
Comments
Post a Comment