python中webelement.send_keys()的问题

时间:2015-10-08 02:29:58

标签: python selenium

我在使用webelement.send_keys()firefox的python中遇到chrome的问题。

使用Selenium

driver.get('http://www.youtube.com')
searchbar = driver.find_element_by_id('masthead-search-term')
searchbar.clear()
searchbar.send_keys(songName)
searchbar.send_keys(Keys.RETURN) # <-This line is the problem.

所以奇怪的是,它有效,但随后崩溃。

我收到此错误:

raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: element is not attached to the page document

任何想法?

0 个答案:

没有答案