Well, let me put it in this way
i have 3 variables storing in datasource as
1) createuser 2) edituser 3) logoutuser
and i have event like this:
if (datasource.contains ("createuser")) { Then here createuser validation will be execute }
if (datasource.contains ("edituser")) { Then here edit user validaton will be execute }
if (datasource.contains ("logoutuser ")) { Then here logout validaton will be execute }
Event : TestRunlisitner after step = datasource
So, Here on my datasource
If i keep only 1 variable like - createuser then event is executing correct
but if i keep 3 varaibles like - createuser;edituser;logoutuser
Then all 3 varaibles executing at the same time but my scenario is
need to excute one by one like 1) createuser 2) edituser 3) logoutuser
I hope this help you ..
Thanks in advance