The error is :
Exception in thread \"main\" org.openqa.selenium.ElementNotInteractableException: Element is not rea
I had a similar issue, on a button when click() operation was performed, org.openqa.selenium.ElementNotInteractableException Exception was getting displayed. As mentioned by DebanjanB in his answer, the element was not reachable by keyboard. To solve this, replaced click() with sendKeys(Keys.ENTER) and button got clicked.