Hello,
i have case like below:
if breakdown = 4, then click add More four time.
if breakdown = 3 then click add More three time.
so how to define activity click to do that,
Thanks.
Hello,
i have case like below:
if breakdown = 4, then click add More four time.
if breakdown = 3 then click add More three time.
so how to define activity click to do that,
Thanks.
like this
if breakdown=4, use foreach (Typeargument = Int32) over Enumerable.Range(1,4)
same with breakdown=3 (foreach over Enumerable.Range(1,3)
)
hi Jacky, its working, thanks ya.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.