In selenium python Send_keys not submiting Valu after first iteration -


i trying send value text field using selenium send_key method. works , send value in first iteration when loop execute 2nd time , 1 send_key not perform action , through error

here code

for rows in csvfile:  			url = rows  			browser.get(url)  			statusbox = browser.find_element_by_xpath("//button[text()='post']")  			statusbox.click()  			statusboxbtn = browser.find_element_by_xpath("//textarea[@id='uniqid_1']")  			statusboxbtn.send_keys("hi")

here error getting on console

unknown error: unhandled inspector error: {"code":-32000,"message":"cannot find context specified id"

help me now


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -