I want to click and send text within a textbox but not able to find the element.
This is the html I want to click and send text-
<form class="addComment expand" data-id="9656414">
<img
src="https://ctl.s6img.com/society6/img/g2taHIrokQ01R_67jS8ulaWI2wk/h_150,w_150/users/avatar/~artwork/s6-original-art-uploads/society6/uploads/u/sul97/avatar_asset/d837ee10016843a3bba9ae3310cc338d" width="25" height="25">
<textarea placeholder="Add a comment..." data-button="9656414"></textarea>
<button id="b9656414">Comment</button>
</form>
My code:-
driver.find_element_by_class_name('add').click()
comments = driver.find_element_by_xpath("/html/body/form[2]")
comments.click()
comments.send_keys("Awesome Art")
I can click but cant type text on it. What am i doing wrong?