Some applications under test might require extensive loading of application data in the UI, and might not be finished on time with loading objects that are required for replaying a test. To successfully replay tests on such an AUT, you can check for the existence of an object before performing an action on it, or you can add sleeps before performing an action.
browserWindow.exists("//INPUT", 6000);
Utils.sleep(6000);
For additional information on these methods, see the Javadoc.