【Web_UI自动化_Python3_大众点评霸王餐_Selenium&pprint】(美团)大众点评霸王餐免费抽取,网址爬虫+自动报名,自动化测试案例

#!/usr/bin/env/python3
# -*- coding:utf-8 -*-
'''
Author:leo
Date&Time:2018-01-25 and 12:32
FileName:
Description:
1.批量打印出标题
2.输入关键词,排除
'''

from time import sleep
from selenium import webdriver

class Meal(object):
    def __init__(self):
        self.driver = webdriver.Chrome(r"D:\Mytest\Svnbucket\python\config\pycharm_config\brower_driver\chromedriver.exe")
        self.driver.implicitly_wait(15)

    def isElementExitst(self, driver, element, mode="xpath"):
        driver.implicitly_wait(1)
        flag = True
        try:
            if mode =="xpath":
                driver.find_element_by_xpath(element)
            elif mode == "css":
                driver.find_element_by_css_selector(element)
            return flag
        except:
            flag = False
            return flag
        driver.implicitly_wait(15)

    def wait_time(self, time_secend, message="等待时间"):
        from tqdm import tqdm
        import time
        pbar = tqdm([wait_second for wait_second in range(int(time_secend) + 1)][1:])
        for char in pbar:
            time.sleep(1)
            pbar.set_description("----{} {:<2} 秒".format(message, char))

    def test_login(self):
        driver = self.driver
        successList, failList = [], []
        driver.get(r"http://s.dianping.com/event/chengdu")
        # 主窗口柄和标题
        mainWindows = driver.current_window_handle
        mainTitle = driver.title
        print(f"\n---- 1.Welcome to :{mainTitle} ----\n")
        if self.isElementExitst(driver=driver, element=".J-bonus-close", mode="css"):
            self.wait_time(1, message="警告:页面存在弹窗")
            try:
                driver.implicitly_wait(1)
                box = driver.find_element_by_css_selector(".J-bonus-close")
                if box:
                    box.click()
                driver.implicitly_wait(15)
            except:
                print("警告:弹窗点击异常")

        more = driver.find_element_by_css_selector(".load-more.show")
        try:
            while True:
                if more.get_attribute("class") == r"load-more show":
                    print(f"-- 点击加载更多成功,请稍等片刻!--")
                    more.click()
                    sleep(1)
                elif more.get_attribute("class") == r"load-more":
                    print("\n---- 2.Success!霸王餐信息已全部加载完毕!开始循环获取商铺信息----\n")
                    break
        except:
            print("-- 点击加载更多失败,请检查!--")
        count = 0
        input_list = ["券", "装修", "教育", "学习", "装修", "月子", "皮肤", "体验", "课程", "婚", "家居", "设计", "孕"]
        print(1, f"\n排除关键字:{input_list}\n")
        menus = driver.find_elements_by_css_selector(".activity-lists-wraper li")
        for i in menus[:]:
            url = i.find_element_by_css_selector("a")
            storeName = i.find_element_by_css_selector("h4").text.encode("gbk", 'ignore').decode("gbk", "ignore")
            storeAddr = i.find_element_by_css_selector("div.addi>span.addr").text.encode("gbk", 'ignore').decode("gbk", "ignore")
            storeUrl = i.find_element_by_css_selector("a").get_attribute("href").encode("gbk", 'ignore').decode("gbk", "ignore")
            count += 1
            # print(f"{count:<3}.商家名称:{storeName} || 商家地址:{storeAddr} || 商家链接:{storeUrl}")

            # 报名
            # Exclude_key = str(input("请输入关键词(q退出):"))
            # while Exclude_key != "q":
            #     input_list = input_list.append(Exclude_key)
            if not any(x in storeName for x in input_list):
                url.click()
                try:
                    print(f"{count:<3}.商家名称:{storeName} || 商家地址:{storeAddr} || 商家链接:{storeUrl}")
                except Exception as e:
                    print(e)
                # 跳转新窗口
                for window in driver.window_handles:
                    driver.switch_to.window(window)
                    if window != mainWindows:
                        break
                sleep(2)
                button = driver.find_element_by_css_selector(".btn-txt.J_self_apply")
                # self.wait_time(2, message=f"新标签页面按钮:{button.text}")
                button.click()
                sleep(5)
                try:
                    # abert = driver.find_element_by_css_selector(".pop-main")
                    # print(f"新标签页面弹框为:{abert.text}")
                    # abert.click()
                    driver.find_element_by_css_selector("#J_pop_ok").click()
                    sleep(1)
                    abert1 = driver.find_element_by_css_selector(".pop-main .col.tit")
                    print(f"\n报名成功页面弹框为:{abert1.text}\n")
                    sleep(1)
                    # 关闭弹窗
                    driver.find_element_by_css_selector(".hd a.close").click()
                    sleep(1.5)
                    successList.append(f"{count}.{storeName}|{storeUrl}")
                except Exception as e:
                    print(e)
                    # print(f"报名异常,请人工检查连接地址:{count}.{storeName}:{storeUrl}\n")
                    failList.append(f"{count}.{storeName}|{storeUrl}")
                finally:
                    # 关闭新标签
                    driver.close()
                # 切回主窗口
                driver.switch_to.window(mainWindows)
            else:
                continue
        try:
            print(f"报名成功店铺总数:{len(successList)}")
            for sucess in successList:
                print(f"\n---- 1.店铺详情:{sucess} ----\n")

            print(f"报名失败店铺总数:{len(failList)}")
            for fail in failList:
                print(f"\n---- 4.店铺详情:{fail} ----\n")
        except Exception as e:
            print(e)
        finally:
            driver.close()



if __name__ == '__main__':
    test = Meal()
    test.test_login()

'''
from time import sleep
from selenium import webdriver
# import io,sys
# # 改变标准输出的默认编码 (gbk超集-gb18030,如果是utf-8会打印空白),print()方法在Win7的默认编码是gbk,部分字符打印会报错
# sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='gb18030')
# # sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf8')

driver = webdriver.Chrome()
driver.implicitly_wait(15)
driver.get(r"http://s.dianping.com/event/chengdu")
sleep(1)
# try:
#     driver.implicitly_wait(1)
#     box= driver.find_element_by_css_selector(".J-bonus-close")
#     if box:
#         box.click()
#     driver.implicitly_wait(15)
# except:
#     print("no box need click")
more = driver.find_element_by_xpath("//a[@class='load-more show']")
mores = more.get_attribute("class")
addList = ['望平街', '锦江区', '武侯祠', '合江亭', '兰桂坊', '多商圈', '新城市广场', '大慈寺', '天府广场', '金沙', '建设路', '宽窄巷子', '双楠', '春熙路', '牛市口', '锦华万达', '九眼桥', '科华北路', '万年场', '桐梓林', '万年场', '杜甫草堂', '红牌楼', '万年场', '双桥子', '东区音乐公园']
str_list = ["按摩", "推拿"]
successList = []
failList = []

# 主窗口柄和标题
mainWindows = driver.current_window_handle
mainTitle = driver.title
print(f"\n---- 1.Welcome,欢迎进入霸王餐首页:{mainTitle} ----\n")
sleep(5)

# 加载更多
more = driver.find_element_by_css_selector(".load-more.show")
# print(more)
try:
    while True:
        if more.get_attribute("class") == r"load-more show":
            print(f"-- 点击加载更多成功,请稍等片刻!--")
            more.click()
            sleep(1)
        elif more.get_attribute("class") == r"load-more":
            print("\n---- 2.Success!霸王餐信息已全部加载完毕!开始循环获取商铺信息----\n")
            break
except:
    print("-- 点击加载更多失败,请检查!--")
count = 0
menus = driver.find_elements_by_css_selector(".activity-lists-wraper li")
for i in menus[:]:
    url = i.find_element_by_css_selector("a")
    storeUrl = i.find_element_by_css_selector("a").get_attribute("href")
    storeName = i.find_element_by_css_selector("h4").text
    storeAddr = i.find_element_by_css_selector("div.addi>span.addr").text
    count +=1
    # if storeAddr in addList:
    #     print(f"{count:<3}.附近商家姓名:{storeName} || 地址:{storeAddr} || 链接:{storeUrl}")
    # if r"代金券" not in storeName and "双人" in storeName or "单人" in storeName or "套餐" in storeName or "饮品" in storeName or "按摩" in storeName or "推拿" in storeName or "选" in storeName:
    # print(f"{count:<3}.商家姓名:{storeName} || 地址:{storeAddr} || 链接:{storeUrl}")
    if r"券" not in storeName and r"装修" not in storeName and r"设计" not in storeName and r"家装" not in storeName:
        url.click()
        try:
            print(f"{count:<3}/{len(menus):<3}.商家姓名:{storeName} || 地址:{storeAddr} || 链接:{storeUrl}")
        except Exception as e:
            print(e)
        # 跳转新窗口
        for window in driver.window_handles:
            driver.switch_to.window(window)
            if window != mainWindows:
                break
                #--
        sleep(2)
        # driver.implicitly_wait(10)
        # try:
        #     box = driver.find_element_by_css_selector(".J-bonus-close")
        #     if box:
        #         box.click()
        #         sleep(2)
        # except:
        #     print("----没有弹框----")
        # driver.implicitly_wait(20)
        button = driver.find_element_by_css_selector(".btn-txt.J_self_apply")
        # print(f"新标签页面按钮为:{button.text}")
        sleep(1.5)
        button.click()
        sleep(5)# 手动登录时间!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        try:
            # abert = driver.find_element_by_css_selector(".pop-main")
            # print(f"新标签页面弹框为:{abert.text}")
            # abert.click()
            driver.find_element_by_css_selector("#J_pop_ok").click()
            sleep(1)
            abert1 = driver.find_element_by_css_selector(".pop-main .col.tit")
            print(f"\n报名成功页面弹框为:{abert1.text}\n")
            sleep(1)
            # 关闭弹窗
            driver.find_element_by_css_selector(".hd a.close").click()
            sleep(1.5)
            successList.append(f"{count}.{storeName}|{storeUrl}")
        except Exception as e:
            print(e)
            # print(f"报名异常,请人工检查连接地址:{count}.{storeName}:{storeUrl}\n")
            failList.append(f"{count}.{storeName}|{storeUrl}")
        finally:
            # 关闭新标签
            driver.close()


        # 切回主窗口
        driver.switch_to.window(mainWindows)
        # print(f"{count}.{storeName}店铺报名成功,成功回到主窗口:{driver.title}")
try:
    print(f"报名成功店铺总数:{len(successList)}")
    for sucess in successList:
        print(f"\n---- 3.店铺详情:{sucess} ----\n")

    print(f"报名失败店铺总数:{len(failList)}")
    for fail in failList:
        print(f"\n---- 4.店铺详情:{fail} ----\n")
except Exception as e:
    print(e)
# 关闭浏览器和driver线程,释放内存资源,否则会在任务管理器看到很多个chrome线程
finally:
    driver.close()
print(f"报名成功的店铺:{len(successLsit)}{successLsit}")
print(f'报名失败的店铺:{len(failList)}{failList}')
'''

----------------------执行结果:由于第一次执行已经报名成功了70店铺,重新跑一次,不能再次报名,所以提示异常------------------

D:\TestFiles\Python3\python.exe D:/MyTest/Python3/Tmp/2019_07_selenium/20190723_大众点评.py

---- 1.Welcome,欢迎进入霸王餐首页:成都本地同城活动-成都霸王餐-大众点评网 ----

-- 点击加载更多成功,请稍等片刻!--
-- 点击加载更多成功,请稍等片刻!--
-- 点击加载更多成功,请稍等片刻!--
-- 点击加载更多成功,请稍等片刻!--

---- 2.Success!霸王餐信息已全部加载完毕!开始循环获取商铺信息----

1  .商家姓名:【VIP专享】爱恋双椒价值190元双人餐免费抢 || 地址:宽窄巷子 || 链接:http://s.dianping.com/event/1979814071
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:1.【VIP专享】爱恋双椒价值190元双人餐免费抢:http://s.dianping.com/event/1979814071

3  .商家姓名:【VIP专享】中华火锅价值187元双人餐免费抢 || 地址:书院街 || 链接:http://s.dianping.com/event/1039072997

报名成功页面弹框为:报名成功。分享可额外获得50元团购抵用券!

5  .商家姓名:尹大师兔先生超值藤椒兔双人餐免费抢 || 地址:建设路 || 链接:http://s.dianping.com/event/1456877374

报名成功页面弹框为:报名成功。分享可额外获得50元团购抵用券!

11 .商家姓名:【VIP专享】海雾里小酒馆价值158元双人餐免费抢 || 地址:多商圈 || 链接:http://s.dianping.com/event/1532443173

报名成功页面弹框为:报名成功。分享可额外获得50元团购抵用券!

20 .商家姓名:五条人糖水铺(锦华伊藤店)超值双人餐免费抢 || 地址:锦华万达 || 链接:http://s.dianping.com/event/2029779200
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:20.五条人糖水铺(锦华伊藤店)超值双人餐免费抢:http://s.dianping.com/event/2029779200

22 .商家姓名:【VIP专享】鱼夫鱼仔鹅卵石鱼火锅(中坝店)超值双人餐免费抢 || 地址:中坝 || 链接:http://s.dianping.com/event/1972345391
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:22.【VIP专享】鱼夫鱼仔鹅卵石鱼火锅(中坝店)超值双人餐免费抢:http://s.dianping.com/event/1972345391

25 .商家姓名:【VIP专享】家悦中餐厅超值双人餐免费抢 || 地址:凤凰大街 || 链接:http://s.dianping.com/event/1775922070
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:25.【VIP专享】家悦中餐厅超值双人餐免费抢:http://s.dianping.com/event/1775922070

40 .商家姓名:【VIP专享】颜鸭肠火锅超值双人套餐免费抢 || 地址:马家花园 || 链接:http://s.dianping.com/event/2050655649
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:40.【VIP专享】颜鸭肠火锅超值双人套餐免费抢:http://s.dianping.com/event/2050655649

41 .商家姓名:说道麻辣串串价值136元双人餐免费抢 || 地址:茶店子 || 链接:http://s.dianping.com/event/572431536
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:41.说道麻辣串串价值136元双人餐免费抢:http://s.dianping.com/event/572431536

43 .商家姓名:MOLLY& CLEMENTINE茉柑橘双人网红美式冰淇淋免 || 地址:合江亭 || 链接:http://s.dianping.com/event/484674988
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:43.MOLLY& CLEMENTINE茉柑橘双人网红美式冰淇淋免:http://s.dianping.com/event/484674988

51 .商家姓名:【橙V专享】寻羊季烤全羊西昌火盆烧烤价值215元双人餐免费抢 || 地址:多商圈 || 链接:http://s.dianping.com/event/578587826
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:51.【橙V专享】寻羊季烤全羊西昌火盆烧烤价值215元双人餐免费抢:http://s.dianping.com/event/578587826

53 .商家姓名:一把骨价值128元双人套餐免费抢 || 地址:多商圈 || 链接:http://s.dianping.com/event/936574146
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:53.一把骨价值128元双人套餐免费抢:http://s.dianping.com/event/936574146

54 .商家姓名:【VIP专享】永盈·福喜粤中餐价值176元的双人餐免费抢 || 地址:春熙路 || 链接:http://s.dianping.com/event/1227961870
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:54.【VIP专享】永盈·福喜粤中餐价值176元的双人餐免费抢:http://s.dianping.com/event/1227961870

55 .商家姓名:【VIP专享】蚝青年价值182元豪华双人餐免费抢 || 地址:玉林 || 链接:http://s.dianping.com/event/944624869
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:55.【VIP专享】蚝青年价值182元豪华双人餐免费抢:http://s.dianping.com/event/944624869

56 .商家姓名:【橙V专享】遇峰欲見轻奢火锅价值356元尊享双人餐免费抢 || 地址:高新区 || 链接:http://s.dianping.com/event/2020004445
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:56.【橙V专享】遇峰欲見轻奢火锅价值356元尊享双人餐免费抢:http://s.dianping.com/event/2020004445

57 .商家姓名:【橙V专享】蚝虾社·海鲜烧烤小龙虾价值220元双人餐免费抢 || 地址:多商圈 || 链接:http://s.dianping.com/event/1813667009
Message: no such element: Unable to locate element: {"method":"css selector","selector":".pop-main .col.tit"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:57.【橙V专享】蚝虾社·海鲜烧烤小龙虾价值220元双人餐免费抢:http://s.dianping.com/event/1813667009

58 .商家姓名:舔杯霸王餐欢乐畅享饮品双人餐免费抢 || 地址:建设路 || 链接:http://s.dianping.com/event/1572244446
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:58.舔杯霸王餐欢乐畅享饮品双人餐免费抢:http://s.dianping.com/event/1572244446

65 .商家姓名:【VIP专享】肉桂厨房CINNAMON精致双人餐免费抢 || 地址:宽窄巷子 || 链接:http://s.dianping.com/event/848277703
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:65.【VIP专享】肉桂厨房CINNAMON精致双人餐免费抢:http://s.dianping.com/event/848277703

66 .商家姓名:【VIP专享】李八哥成都小盘菜火锅超值双人套餐免费抢 || 地址:高新区 || 链接:http://s.dianping.com/event/1714192068
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:66.【VIP专享】李八哥成都小盘菜火锅超值双人套餐免费抢:http://s.dianping.com/event/1714192068

67 .商家姓名:丸摩堂夏季福利招牌饮品免费抢 || 地址:多商圈 || 链接:http://s.dianping.com/event/320629907
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:67.丸摩堂夏季福利招牌饮品免费抢:http://s.dianping.com/event/320629907

75 .商家姓名:书亦烧仙草双人饮品套餐免费抢 || 地址:多商圈 || 链接:http://s.dianping.com/event/319838408
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:75.书亦烧仙草双人饮品套餐免费抢:http://s.dianping.com/event/319838408

79 .商家姓名:【VIP专享】堂前燕价值150元双人餐免费抢 || 地址:武侯祠 || 链接:http://s.dianping.com/event/234374367
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:79.【VIP专享】堂前燕价值150元双人餐免费抢:http://s.dianping.com/event/234374367

80 .商家姓名:小妖签串串香超值双人餐免费抢 || 地址:北门大桥 || 链接:http://s.dianping.com/event/618443768
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:80.小妖签串串香超值双人餐免费抢:http://s.dianping.com/event/618443768

84 .商家姓名:【吃住玩全包】价值3644元汉唐·馨阁民宿双人三天两晚休闲游 || 地址:西山公园 || 链接:http://s.dianping.com/event/884865365
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:84.【吃住玩全包】价值3644元汉唐·馨阁民宿双人三天两晚休闲游:http://s.dianping.com/event/884865365

93 .商家姓名:【橙V专享】碳楽滿腹·日式燒肉店豪华双人餐免费抢 || 地址:科华北路 || 链接:http://s.dianping.com/event/1865359107
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:93.【橙V专享】碳楽滿腹·日式燒肉店豪华双人餐免费抢:http://s.dianping.com/event/1865359107

102.商家姓名:【VIP专享】烤官里面请价值161元双人餐免费抢 || 地址:玉林 || 链接:http://s.dianping.com/event/1949710660
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:102.【VIP专享】烤官里面请价值161元双人餐免费抢:http://s.dianping.com/event/1949710660

103.商家姓名:【VIP专享】原乡漫生活咖啡牛排馆价值508双人牛排餐免费抢 || 地址:东升镇 || 链接:http://s.dianping.com/event/2044476549
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:103.【VIP专享】原乡漫生活咖啡牛排馆价值508双人牛排餐免费抢:http://s.dianping.com/event/2044476549

104.商家姓名:赵记传承牛奶甜品价值46元双人套餐二选一 || 地址:荷花池 || 链接:http://s.dianping.com/event/208073898
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:104.赵记传承牛奶甜品价值46元双人套餐二选一:http://s.dianping.com/event/208073898

105.商家姓名:【VIP专享】水煮江山肥肠火锅价值175元双人餐免费抢 || 地址:航空港 || 链接:http://s.dianping.com/event/962991719
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:105.【VIP专享】水煮江山肥肠火锅价值175元双人餐免费抢:http://s.dianping.com/event/962991719

124.商家姓名:玩味制造单位价值118元双人餐免费抢 || 地址:春熙路 || 链接:http://s.dianping.com/event/787143927
Message: no such element: Unable to locate element: {"method":"css selector","selector":"#J_pop_ok"}
  (Session info: chrome=75.0.3770.100)

报名异常,请人工检查连接地址:124.玩味制造单位价值118元双人餐免费抢:http://s.dianping.com/event/787143927

报名成功店铺总数:3

---- 3.店铺详情:3.【VIP专享】中华火锅价值187元双人餐免费抢|http://s.dianping.com/event/1039072997 ----


---- 3.店铺详情:5.尹大师兔先生超值藤椒兔双人餐免费抢|http://s.dianping.com/event/1456877374 ----


---- 3.店铺详情:11.【VIP专享】海雾里小酒馆价值158元双人餐免费抢|http://s.dianping.com/event/1532443173 ----

报名失败店铺总数:27

---- 4.店铺详情:1.【VIP专享】爱恋双椒价值190元双人餐免费抢|http://s.dianping.com/event/1979814071 ----


---- 4.店铺详情:20.五条人糖水铺(锦华伊藤店)超值双人餐免费抢|http://s.dianping.com/event/2029779200 ----


---- 4.店铺详情:22.【VIP专享】鱼夫鱼仔鹅卵石鱼火锅(中坝店)超值双人餐免费抢|http://s.dianping.com/event/1972345391 ----


---- 4.店铺详情:25.【VIP专享】家悦中餐厅超值双人餐免费抢|http://s.dianping.com/event/1775922070 ----


---- 4.店铺详情:40.【VIP专享】颜鸭肠火锅超值双人套餐免费抢|http://s.dianping.com/event/2050655649 ----


---- 4.店铺详情:41.说道麻辣串串价值136元双人餐免费抢|http://s.dianping.com/event/572431536 ----


---- 4.店铺详情:43.MOLLY& CLEMENTINE茉柑橘双人网红美式冰淇淋免|http://s.dianping.com/event/484674988 ----


---- 4.店铺详情:51.【橙V专享】寻羊季烤全羊西昌火盆烧烤价值215元双人餐免费抢|http://s.dianping.com/event/578587826 ----


---- 4.店铺详情:53.一把骨价值128元双人套餐免费抢|http://s.dianping.com/event/936574146 ----


---- 4.店铺详情:54.【VIP专享】永盈·福喜粤中餐价值176元的双人餐免费抢|http://s.dianping.com/event/1227961870 ----


---- 4.店铺详情:55.【VIP专享】蚝青年价值182元豪华双人餐免费抢|http://s.dianping.com/event/944624869 ----


---- 4.店铺详情:56.【橙V专享】遇峰欲見轻奢火锅价值356元尊享双人餐免费抢|http://s.dianping.com/event/2020004445 ----


---- 4.店铺详情:57.【橙V专享】蚝虾社·海鲜烧烤小龙虾价值220元双人餐免费抢|http://s.dianping.com/event/1813667009 ----


---- 4.店铺详情:58.舔杯霸王餐欢乐畅享饮品双人餐免费抢|http://s.dianping.com/event/1572244446 ----


---- 4.店铺详情:65.【VIP专享】肉桂厨房CINNAMON精致双人餐免费抢|http://s.dianping.com/event/848277703 ----


---- 4.店铺详情:66.【VIP专享】李八哥成都小盘菜火锅超值双人套餐免费抢|http://s.dianping.com/event/1714192068 ----


---- 4.店铺详情:67.丸摩堂夏季福利招牌饮品免费抢|http://s.dianping.com/event/320629907 ----


---- 4.店铺详情:75.书亦烧仙草双人饮品套餐免费抢|http://s.dianping.com/event/319838408 ----


---- 4.店铺详情:79.【VIP专享】堂前燕价值150元双人餐免费抢|http://s.dianping.com/event/234374367 ----


---- 4.店铺详情:80.小妖签串串香超值双人餐免费抢|http://s.dianping.com/event/618443768 ----


---- 4.店铺详情:84.【吃住玩全包】价值3644元汉唐·馨阁民宿双人三天两晚休闲游|http://s.dianping.com/event/884865365 ----


---- 4.店铺详情:93.【橙V专享】碳楽滿腹·日式燒肉店豪华双人餐免费抢|http://s.dianping.com/event/1865359107 ----


---- 4.店铺详情:102.【VIP专享】烤官里面请价值161元双人餐免费抢|http://s.dianping.com/event/1949710660 ----


---- 4.店铺详情:103.【VIP专享】原乡漫生活咖啡牛排馆价值508双人牛排餐免费抢|http://s.dianping.com/event/2044476549 ----


---- 4.店铺详情:104.赵记传承牛奶甜品价值46元双人套餐二选一|http://s.dianping.com/event/208073898 ----


---- 4.店铺详情:105.【VIP专享】水煮江山肥肠火锅价值175元双人餐免费抢|http://s.dianping.com/event/962991719 ----


---- 4.店铺详情:124.玩味制造单位价值118元双人餐免费抢|http://s.dianping.com/event/787143927 ----


Process finished with exit code 0
 

 

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 5
    评论
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值