I have the page to enter datetime, I have the datetime value as string, I am passing that to through the find_element_by_xpath, I am getting error This is my xpath
I have the value in string variable
value = '1980-06-30T00:00:00Z'
I use the code
xpath = '//*[@id="main-panel"]/div/app-manual-update/div/div/form/div[36]/div/input'
driver.find_element_by_xpath(xpath).send_keys(value);
I get
ElementNotInteractableException: Message: element not interactable
(Session info: chrome=94.0.4606.61)
How to pass the datetime value?


