I have been trying to develop a web application using the UiPath built in App Studio but have since ran into some issues.
I am trying to create an event and include an if Statement where IF a checkbox is checked it would change the “Disabled” value from true to false on another object. The question is how do I create the initial If statement to check for a checked box? It should look something like this:
Use Get Attribute activity and indicate that check box. And select Check attribute from the drop down list. If check box is selected then it will give output as True else False.
Thank you for your reply. I am not trying to check if the aforementioned box is checked on a website, inside a sequence, but rather I am using the UiPath App studio and trying to design an event like this.
That is a great workaround. Is there a way to include an Or function to check for either !checkbox1 or !checkbox2 that could change the Hidden property?
The problem is that if I use unary on both app variables, none of them work. if I use Or(!checkbox1,checkbox2) it works as intended, where checking checkbox1 will enable checkbox3.
If I use Or(!checkbox1,!checkbox2) none will work anymore. Checking either checkboxes will not enable checkbox3.