Element not interactable hatası

from hesaplar import email, password

from selenium import webdriver

from selenium.webdriver.common.keys import Keys

import time

class Instagram:

def __init__(self, email, password):

    self.browser = webdriver.Chrome()

    self.email = email

    self.password = password



def signIn(self):

    self.browser.get('https://www.instagram.com/?hl=tr')

    time.sleep(3)

    emailInput = self.browser.find_element_by_xpath("//*[@id='loginForm']/div/div[1]/div/label/input")

    passwordInput = self.browser.find_element_by_xpath("//*[@id='loginForm']/div/div[2]/div/label/input")

    emailInput.send_keys(self.email)

    passwordInput.send_keys(self.password)

    passwordInput.send_keys(Keys.ENTER)

    time.sleep(3)

    self.browser.get('https://www.instagram.com/netflxceviri/')

    gonderi = self.browser.find_element_by_xpath("//*[@id='react-root']/section/main/div/div[3]/article/div[1]/div/div[1]/div[1]/a/div[1]/div[2]")

    gonderi.click()

    time.sleep(2)

    yorum = self.browser.find_element_by_xpath("/html/body/div[5]/div[2]/div/article/div[3]/section[3]/div/form/textarea")

    yorum.send_keys("burada yazılan")  

instgrm = Instagram(email, password)

instgrm.signIn()
yazdığım kod bu şekilde ama yorum kısmına birşey yazdıramıyorum aldığım hata
element not interactable
yardımcı olabilecek var mı ?