Hello guys,
I have a check box.
i need to validate the check box is ticked or not.
i have used image exist its not working because there are some check box in the same window.
So is there any method to check for that.
Hello guys,
I have a check box.
i need to validate the check box is ticked or not.
i have used image exist its not working because there are some check box in the same window.
So is there any method to check for that.
You can use get attribute activity and get the value of the checked attributed to see it
It would be true if checked else false
Cheers
The output variable is not Boolean it is string.
So how can i use it in “IF CONDITION”.
Thanks Mate
@Gokul_Murali
Hey Gokul even though you will get the output in String Variable ,There will be only two Outcomes
Either “checked” or “unchecked” so you can mention the same in the if Condition
If "checked " : Then the "then " part will execute
else -"else " part will execute(that is “unchecked”)
Regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.