Can I wait Selenium Web Driver for long time period?
Even though I can set implicitlywait command like below, I doesn't wait the time what I given.
driver.manage().timeouts().implicitlyWait(5, TimeUnit.MINUTES);
Is there any thing wrong here?
In my case I need to execute one test case and wait 4 minutes and then execute next test case. I use Java here.
