One of the purposes of the TestSquad.org was to help visitors to determine whether it was better to use WaitForCondition (string arg0) or Wait () in Selenium. These two methods were quite different from one another and varied somewhat in how well they worked and in which was the fastest.
The site operator's attitude was that it was better to use WaitForCondition (string arg0), because the wait interval for the Wait() function was limited by the value that was specified by an argument. Also, the wait interval in that case was fixed, meaning that time was lost even when the server responded quickly because the method was waiting for the fixed interval. An example used on the site showed that if the user tried Wait(3000), the time spent waiting would be three minutes even if the browser could have made the wait much shorter.