我正在尝试在textarea中发送密钥,但它给了我错误
AttributeError: 'NoneType' object has no attribute 'send_keys'
我的代码是
barra_commenti= driver.find_element_by_xpath("//*[@id='react-root']/section/main/section/div[1]/div[1]/div/article[1]/div[2]/section[3]/form").click()
time.sleep(2)
barra_commenti.send_keys("ciao")
textarea就是这个
<textarea aria-label="Aggiungi un commento..." placeholder="Aggiungi un
commento..." class="_bilrf" autocomplete="off" autocorrect="off"
style="height: 18px;"></textarea>
这是Instagram评论栏,我不明白为什么它不会去 我也尝试使用selenium chrome扩展程序,看看它是否也没有goo但是它有效,所以它只在程序中提供错误
答案 0 :(得分:0)
试试这个
barra_commenti= driver.find_element_by_xpath("//*[@id='react-.
root']/section/main/section/div[1]/div[1]/div/article[1]/div[2]/section[3]/form")
barra_commenti.click()
time.sleep(2)
barra_commenti.send_keys("ciao")