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') #获取礼物列表中鲜花礼物元素(鼠标悬浮到此位置,获取此礼物价格)
等大神呢 报错贴出来看看 报的什么错呢 报的什么错误?看下日志 具体信息是啥
页:
[1]