Hi, I was also having issues with this, and did the same workaround using a loop, that Sebastian did. Here's one example of that: nCount := 0; while not (CitrixWaitForTextFuzzy("login_verification_text", DESKTOP, 615, 421, 34, 17, "ENG", MATCH_Exact, 3000, true)) do nCount := nCount + 1; if (nCount 40) then MeasureInc("login_error"); halt end; end; So here the polling interval is basically 3 seconds, which does inflate the response times a bit, but it's better than having it wait for the full 60 seconds (default timeout) every time it does the synchronization.
↧