I have a couple click activities - but I was trying to validate whether or not the box is checked or not before it clicks on it (for a modify process) - I have it in a select case statement so if a particular item A is checked in the request I want it to look and see if it is already checked (ignore) or unchecked (click on it) How/what do I use in my if condition to make that happen?
I believe you can use ‘Get Attribute’ to determine if the checkbox is checked or unchecked.
Checked & Unchecked state of a checkbox can be identified through ‘checked’ property. Also Enabled & Disabled state of a checkbox can be identified through ‘aastate’ property.
What the error thrown? Basically the output of the “checked” attribute is 0 or 1. 0 if unchecked and 1 if checked. Use it accordingly under if condition. Its not a boolean output.
Hi Rammohan91
in my case i dont have aaname or aastate attribute
uipath treating checkbox as a span tag, because of that it might not taking those attributes
in this case what can i do ?
could you please help me on this ?