i need a solution to print the string value after checking the Boolean variable is true or false and i need the string which is corresponding to true or false without using if activity…
Kindly check it the below one…
If(isVerificationResult=True, then LogMessage(“Successfully land on the Dashboard screen with My Savings Account card displayed on top”,“”))
so i want a solution that need to reflect based on true or false condition i want to print the corresponding string based on true or false…
If you dont want to use if activity you can try this:
Declare a string variable strLogMessage
In assign activity:
strLogMessage = If(isVerificationResult=True, “Successfully land on the
Dashboard screen with My Savings Account card displayed on top”,“”)