Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to test a file upload using the facebook php library for webdriver, and it appears that the upload is working because the source code shows the 'loading' notification, but I can't seem to get the test to wait for the file to upload before proceeding to the next step. I can't find any reference to either an implicit wait (not ideal, but would probably do the trick) or a wait for element present in any documentation or discussion among people using this library. Any help would be much appreciated.

Thanks!

share|improve this question

1 Answer

You could do an implicit wait:

$this->_session->timeouts()->implicit_wait(3000); // 1 sec = 1000
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.