Hi Naveen,
In the Classic freeCRM wbesite after clicking on contacts page... once it open.. I want to click on new contacts by using below code,but it is giving me error as element not visible. Can you please help to resolve the issue
Actions action=new Actions(driver);
action.moveToElement(contactLink).build().perform();
Thread.sleep(2000);
action.moveToElement(newContactLink).build().perform();
new WebDriverWait(driver,30).ignoring(StaleElementReferenceException.class).until(ExpectedConditions.visibilityOf(newContactLink));
newContactLink.click();
Hi Naveen,
In the Classic freeCRM wbesite after clicking on contacts page... once it open.. I want to click on new contacts by using below code,but it is giving me error as element not visible. Can you please help to resolve the issue
Actions action=new Actions(driver);
action.moveToElement(contactLink).build().perform();
Thread.sleep(2000);
action.moveToElement(newContactLink).build().perform();
new WebDriverWait(driver,30).ignoring(StaleElementReferenceException.class).until(ExpectedConditions.visibilityOf(newContactLink));
newContactLink.click();