我在使用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
任何想法?