I am using implicit wait in my Script
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
as I have searched while googling, once driver not able to find the specified Locator,implicit wait waits for specified time period,here is 30 seconds.
but in case of my script,initially element is hidden after 2 or 3 seconds it gets appear, so when ever the element gets appear,driver able to locate it.Not waiting for 30 seconds.
Any body have any idea why it is working like fluent wait.