The HTML:
My goal:
what I am trying to achieve right now is to find this textarea and use send.keys(). (for sending email (gmail) automation)
My problem:
Unable to locate this textarea.
Attempts to solve the problem:
I tried using id, but this does work because the id value seems to be constantly changing every time when I reload.
browser.find_element_by_id()
Tried using class name, but this does not work either, no idea why.
browser.find_element_by_class_name("Ak aXjCH")
Tried to create time delay, have no effect on the outcomes
time.sleep(10)
Tried using to find the element using xpath, but i think i wrote the code incorrectly.
browser.find_element_by_xpath("//div[@class='Ar As']//div[@class='At']//textarea[@class='Ak aXjCH']")
New to selenium and coding I general. Thanks in advance.
