Element is not clickable at point . Other element would receive the click:
Element is not clickable at point (775.25, 10.166671752929688). Other element would receive the click:
It clearly says, the element we want to click is hidden by some other element div in this case, which would receive the click.
I think it is a problem with the UI and the header shouldn't hide the element, but you can try few things :
Maximize the window of the browser from webdriver to see if header still hides the element
driver.manage().window().maximize()
Use JavaScript to click element
WebElement element = driver.findElement(By.<locator>); JavascriptExecutor executor = (JavascriptExecutor)driver; executor.executeScript("arguments[0].click()", element)`
use JavascriptExecutor.:-
WebElement element = driver.findElement(By.<locator>);
JavascriptExecutor executor = (JavascriptExecutor)driver;
executor.executeScript("arguments[0].click()", element)