selenium无法定位mouseover事件出现的元素
前端页面将鼠标移至个人信息会出现一个【退出登录】的span,使用actionchain的move_to_element,可以实现这个span的显示,但是无法定位到该元素。
def logout(self): action = action_chains.ActionChains(self.driver)
user_info = self.driver.find_element_by_xpath(LOCAL_BROWSER_ITEM_XPATH['用户信息'])
action.move_to_element(user_info).perform()
sleep(10)
self.driver.find_element_by_xpath(LOCAL_BROWSER_ITEM_XPATH['登出']).click()
也试过先将该元素保存,然后再点击的操作,依旧不行,都是一样的报错
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"/html/body/div[3]/div/div/ul/li[2]/span[2]"} (Session info: chrome=91.0.4472.124)
有无大佬告知是什么原因,感谢!!
前端代码没有frame或者iframe,并且报错的路径,复制后在前端页面是可以反查出来的,是可以定位的。所以不知道是什么原因导致的。
以上是 selenium无法定位mouseover事件出现的元素 的全部内容, 来源链接: utcz.com/p/938019.html