Hey everyone,
So I've got in the habit of developing an object action, like a 'Write' action, that waits for the field to appear before attempting to interact with it.
When running the process via control tower (as a robot), I noticed that there will be situations where the 'element cant be found' on the write stage, which is AFTER the wait stage.
So, it seems, that it passes the wait stage (telling me that it is aware that the element exists), but then fails because when it comes to writing to that same element, it cant identify it.
Is this expected behavior? Because of this I am determining that 'wait for the element to exist' isn't a reliable and 100% effective way to ensure the element is interactable. I seem to have resolved it by adding an additional hard wait before the write action, but best practise says to try reduce the amount of hard/redundant waits.
Is anybody able to share some thoughts on this experience?
Thanks!