Depends on your scenario. webDriver click is the most reliable option. But if doesn't work you can go for sendKeys methofd using Keys.ENTER or Keys.RETURN. Sometimes above mentioned doesn't work as we can't interact with the element then we shoulp opt javascript executor click.
((JavascriptExecutor) driver).executeScript("arguments[0].click();", yourelement);