selenium.common.exceptions.StaleElementReferenceException: Message: Element not found in the cache

最近在用selenium+PhantomJS写程序的时候,其中有一部分是输入用户名密码然后点击登录的过程,在登录按钮操作的时候一直报错:

username_input = wait.until(EC.presence_of_element_located((By.ID,'TB_userName')))
passwd_input = wait.until(EC.presence_of_element_located((By.ID, 'TB_password')))
# 登录按钮
submit = wait.until(EC.element_to_be_clickable((By.ID, 'Button1')))
print(browser.page_source)
# 清空当前文本框内容
username_input.clear()
username_input.send_keys(username)
passwd_input.clear()
passwd_input.send_keys(passwd)
print(browser.page_source)
submit.click()

selenium.common.exceptions.StaleElementReferenceException: Message: Element not found in the cache 

按照错误的字面意思来讲,这是因为submit按钮不在当前的缓存中,这让我有点不理解,因为用户名和密码的输入框都正常,为什么登录按钮就错误了呢?明明是一个页面啊。

经过查资料,发现这是因为在登录按钮操作之前,当前页面已经做了改变,包括跳到新页面和刷新,都会导致这个原因,我就在程序中加入了两行,让程序把当前的页面打印出来,果然两个地方打印出来的页面内容不一样。究其原因,是由于username和passwd是从文件里面读取的,造成了passwd字符串最后一个字符是'\n' 即换行符,当passwd_input.send_keys(passwd)这一行执行的时候,就相当于我们自己输入了密码又按了回车键,最后调用了passwd.strip()去掉换行符再执行,就没有报错误了!

你可能感兴趣的:(python积累,python爬虫,python,selenium,PhantomJS)