测试积点老人 发表于 2021-8-16 13:34:30

selenium中鼠标悬浮报错,这个有遇到的吗


这个错误有遇到的吗,在使用selenium封装
self.move_to_element(loc.Gift_The_price,doc) #鼠标移动到玫瑰花处,悬浮获取此处礼物价格
# 鼠标悬浮
def move_to_element(self, locator,doc=''):
    try:
      ActionChains(self.driver).move_to_element(locator).perform()
    except:
      logger.info('鼠标移动至该元素失败'.format(locator))
      raise#元素位置
Gift_The_price = (By.CSS_SELECTOR,'#roomHd_column2 > div.roomHd_comprehensive.ng-scope > div.roomHd_zmcBoxz.roomHd_middle_area3.ng-scope > div.roomHd_zmcBox_wai > div.roomHd_column2_bottom.roomHd_middle_area9 > div.roomHd_gift > div.roomHd_gift_list > div.roomHd_gift_box.hrScrollbar1 > div:nth-child(1) > ul > li:nth-child(2) > div:nth-child(1) > img') #获取礼物列表中鲜花礼物元素(鼠标悬浮到此位置,获取此礼物价格)

bellas 发表于 2021-8-17 09:42:57

等大神呢

qqq911 发表于 2021-8-17 10:36:43

报错贴出来看看

海海豚 发表于 2021-8-17 11:21:00

报的什么错呢

litingting0214 发表于 2021-8-17 13:48:36

报的什么错误?看下日志

jingzizx 发表于 2021-8-17 18:47:14

具体信息是啥
页: [1]
查看完整版本: selenium中鼠标悬浮报错,这个有遇到的吗