How to use explicit wait in pageobject fields? I have a pageobject class in which i declare fields and use the FindBy tag to instantiate them. How can i add a explicit wait for some of or all of those fields declared in the
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
My solution is to not use @FindBy. In your page object:
Maybe it's an architectural issue. I can't seem to find any resources confirming that @FindBy support waits so maybe its usage depends on a test design/architecture. |
|||
|
|
|
Take a look at the Explicit and implicit waits section in the Selenium Web Driver documentation here. Basically, if you want to do it explicitly:
Or, implicitly (note this only needs to be done once for the Web Driver, it will keep using this setting on subsequent
Note: The above code is taken straight out of the Selenium Documentation from the provided link, and was put here just as a convenience. |
|||||||
|