i want the page to be loaded fully with all the elements on it and then perform the click action on one of the specified button in selenium WebDriver -


im new selenium webdriver java. i,m unable click on button on page. page displayed following click action on link.its showing error message in console " element not clickable " coordinates.tried implicit wait, thread sleep, find element , click etc. still same problem. issue in firefox , chrome ok in ie. can me pls. regards sri

try this

webdriverwait wait = new webdriverwait(driver, 5); wait.until(expectedconditions.refreshed(expectedconditions.elementtobeclickable(element))); 

Comments