shiva1148New Contributor13 years agoWaitForAjaxHow to perform wait for ajax in testcomplete?For Example while filetering data in a table how do we know whether the table is completely loaded?
2 RepliesReplies sorted by Most LikedSort ByMost LikedOldestNewestdganovStaff13 years agoI believe there is some visual indicator of data load, that disappears when the load completes. You should find this object and wait while its Visible property value is true. Something like this:var obj = page.table.indicatorObj;while (obj.Exists && obj.Visible) Delay(100);TanyaYatskovskaAlumni13 years ago Hi Jagan, Also, please refer to the "Testing Dynamic Web Pages" article - it contains some tips that may help you create a reliable test.
dganovStaff13 years agoI believe there is some visual indicator of data load, that disappears when the load completes. You should find this object and wait while its Visible property value is true. Something like this:var obj = page.table.indicatorObj;while (obj.Exists && obj.Visible) Delay(100);
TanyaYatskovskaAlumni13 years ago Hi Jagan, Also, please refer to the "Testing Dynamic Web Pages" article - it contains some tips that may help you create a reliable test.
Recent Discussionsv 15.75.22.7: 'Go to declaration' & 'Find usages' are missingDiagram objectsDisabling security for iFrame is restricting a card payment processor