Explicit wait is not woking in the below line diver is waiting for only 70 to 100 milliseconds and error is displayed as element is not clickable :
WebDriverWait wait1=new WebDriverWait(driver,5000);
wait1.until(ExpectedConditions.elementToBeClickable(By.xpath("//span[@class='ui-button-icon-primary ui-icon ui-icon-triangle-1-s']")));
driver.findElement(By.xpath("//span[@class='ui-button-icon-primary ui-icon ui-icon-triangle-1-s']")).click();