I am using a click activity to search in browser which takes 45 seconds to load after clicking it and after which the next click takes 30 secinds to load. In such senario do i increase my timeout alone or add a delay or use element exist. However element exist is not in studiox.
Don’t use Delay as it will explicitly delay your execution even if the desired element is available before delay time is over.
Use Check App State which is more refined and reliable than element exist. Enter the number of Seconds it should wait for the element to appear.
As a best practice, wherever there is delay in appearing any element you should use Retry Scope to that logic. This will make sure if first time the element didn’t found within the desired time, second time it will work.