driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
TimeUnit
is not supported in my version of Java. How to implement the above logic in JDK 1.4 ?
When I am importing TimeUnit
like in the statement below it is saying "can't find symbol concurrent". It is happening in the intellij IDE.
import java.util.concurrent.TimeUnit;