Hello, I using application to automate, if the application is opened with disabled state of all the buttons, once we navigate to chrome or any other taskbar icon again we move to the respective application, the buttons should be enabled then only next next process will be performed. for this scenario, how we handle it?
Use the check app state or else the elements exists activity.
After using that activity indicate the buttons and if the buttons were not highlighted then you can proceed with the further steps in the then block. If the buttons were highlighted then you can do the necessary actions in the else block.
You can also use Get Attribute Activity to get an aastate attribute if it is disabled then it’s value will be unavailable, focusable and if it is enabled then it’s value will be focusable.
according to this activity output you can proceed further
I have to perform the disable state to enable state by navigation operation like Open the chrome and open the application in the taskbar icons, if it is disabled. Is this possible?