wy such simple automation giving error?
much confusing.
i have put 5 seconds delayand actually it takes 1 second to reflect custom field and wait for ready is also complete.
Change the selectors, instead of table row give the property name with valid value. Use UiExplorer and add the proper attributes instead of giving table row select exact check box value
The issue is that the Element Exists activity is returning True even when the checkbox is not visible on the screen. This usually happens because the selector is still partially matching another hidden/background element, or the target element remains present in the DOM/UI structure even after disappearing visually.
Suggested troubleshooting steps:
Recheck and refine the selector using UI Explorer.
Enable Strict Selector or use a reliable anchor.
Verify if the element is hidden instead of fully removed.
Try adding a small delay or Check App State activity instead of Element Exists.
Set proper WaitForReady and timeout values.
Highlight the target element during debugging to confirm the correct UI element is being identified.
You need to modify the selector for it to work properly. The current scenario is not working because the table exists, but it does not contain any values.
Alternatively, you can use the “Showing 0 fields” in Element Exists, or extract the table and then check for the no-row condition.
It’s most likely due to the selector’s reliability. Have you tried Check app state activity to check if the element exists? If not try it, once and on the basis of its result you can add logic to delete.
ok , i tried check app state as well , but my custom field name is not showing in result and due to that i have avoided this.
i am using extarct data table and checking if count is >o or not as with customfield id , it i giving only single /no result .