I'm writing a basic automated test in python using selenium. I can navigate through several pages but when i get to this one particular page i'm unable to click on the button.
Code where my test is failing
driver.find_element_by_id('//*[@id="save"]').click()
Element when i inspect over the button i'm trying to click
<input type="submit" value="View Report" id="save" name="save" data-reportid="108">
Error message below
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element is not clickable at point (1750, 770). Other element would receive the click:
... (Session info: chrome=83.0.4103.116)