SOLVED
Solution: I just used firefox instead of chrome, and the problem magically disappeared!
I have a selenium bot that adds products on a website with given information. This use to work but it doesn't now. I want to paste the description in the textarea but it goes and pastes the description inside the field SEO Title. And chrome browser freezes for some seconds when it comes to pasting the description, this also is new.
It also leaves a little bit of text when clearing, or pasting text in the upper area, I have no idea why.
Code is here.
textarea = driver.find_element_by_css_selector("textarea#content")
textarea.clear()
textarea.click()
textarea.send_keys(str(desc))
This clears the wanted textarea, but sends the keys to the wrong place, need help.
This is the place where it should paste the description
This is the place called SEO Title, and it pastes the description here instead of the textarea
Example image showing the error, text should be in the upper text area
untouched image of the two areas mentioned