TA的每日心情 | 无聊 昨天 09:47 |
---|
签到天数: 528 天 连续签到: 1 天 [LV.9]测试副司令
|
1测试积点
这个错误有遇到的吗,在使用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') #获取礼物列表中鲜花礼物元素(鼠标悬浮到此位置,获取此礼物价格)
复制代码
|
|