You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Conduct an operation which will take some time to happen (such as getElement
or isTextPresent
2. Note in selenium output that the attempts are re-executed at a higher
frequency than the half second stipulated by protected $waiting_time = 0.5;
Replace (two occurrences of)
sleep( $this->waiting_time );
with
usleep($this->waiting_time * 1000000);
and that should work as expected.
Original issue reported on code.google.com by [email protected] on 5 Jan 2012 at 12:55
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 5 Jan 2012 at 12:55The text was updated successfully, but these errors were encountered: