Hello All,
i am taking data from CSV and reading each cell value and checking that value (id) status is Approved or not in application by doing certain steps .
1)reading CSV value column
2)going on browser & opening application and clicking on “EQU PO Global Requestor” option using click activity .
3)input value and after submitting it will show the status .
4)added for each loop
5)added if else condition to check if condition is true its executing some steps and else it should skip the current step and move to next row (incase status not approved)
6)i have added msg box which showing me its working correctly , but when it go to else part (status is not approved). its not able to go to 1st step and start workflow by skipping current row.
7)created Approved as variable , datatype is Boolean and value is true
8)added continue activity so that it will skip that row and move to next row and start workflow again.
Can any body help me with above