RIATest waits for a few seconds for the agent to connect. Can I increase the wait time?
RIATest by default waits for 60 seconds for the agent to connect after starting the script execution. If 60 seconds are not enough you can disable the “Wait for Agent before running” project option and perform waiting actions from within your first running script by adding the following lines at the top of the script: setWaitTimeout(100000); waitfor(isAppConnected(“App”)); The first line sets the timeout for the waitfor operation to 100 seconds (default is 30 secs). The second line waits until the agent is connected to RIATest. You need to pass to the isAppConnected function the id of your application.