I'm trying to insert text into a text box. When I inspect the textbox I found out that their are no identifiers for the text box so I used the xpath.
textbox = driver.find_elements_by_xpath("/html/body/main/article/div/div/div[3]/div/div[1]/div/div/form/div[1]/div/div/div/div[1]/textarea")
textbox.click()
textbox.send_keys("convert")
But it throws an error
"AttributeError: 'list' object has no attribute 'click'".
I tried to find out where the text gets written and it is written in Code-line class. Code gets written here
I don't understand what's actually going on here because I have not seen any textbox which don't have any identifier.
How can I identify the textbox and insert text into it?