def __init__(self, sip, sport, app=None, platform=None, device_name=None, device_type=None): desired_caps = get_desired_capabilities( app, platform=platform, device_name=device_name, appPackage='com.ss.android.ugc.aweme', appActivity='com.ss.android.ugc.aweme.main.MainActivity') super(DouYinApp_2_0_0, self).__init__(desired_caps, sip, sport) # 首页滑动翻下一个视频时等待的时间 self.swip_to_next_wait_time = 1 # 点击时间等待的时间 self.click_wait_time = 2 # 滑动翻视频、粉丝、关注列表 等待的时间 self.swip_to_bottom_wait_time = 0.5 # 滑动翻视频、粉丝、关注时,每做一次至底判断滑动的次数 self.swip_times_every_assert = 10 # 点击搜索主播/音乐人时的等待时间 self.find_wait_time = 3 # 编辑editor等待时间 self.editor_wait_time = 0.5 # 定义需要点击的元素 self.buttons = AppButtonManager.checkout(app_version='2.0.0', device_name=device_type)
def __init__(self, sip, sport, app=None, platform=None, device_name=None, device_type=None): desired_caps = get_desired_capabilities( app, platform=platform, device_name=device_name, appPackage='com.smile.gifmaker', appActivity='com.yxcorp.gifshow.HomeActivity') super(KuaiShouApp_5_8_3, self).__init__(desired_caps, sip, sport) # 首页滑动翻下一个视频时等待的时间 self.swip_to_next_wait_time = 0.5 # 点击时间等待的时间 self.click_wait_time = 2 # 滑动翻视频、粉丝、关注列表 等待的时间 self.swip_to_bottom_wait_time = 0.5 # 滑动翻视频、粉丝、关注时,每做一次至底判断滑动的次数 self.swip_times_every_assert = 10 # 点击搜索主播/音乐人时的等待时间 self.find_wait_time = 3 # 编辑editor等待时间 self.editor_wait_time = 0.5 # 定义需要点击的元素 self.buttons = AppButtonManager.checkout_kuaishou( app_version='5.8.3', device_type=device_type)
def __init__(self, sip, sport, app=None): desired_caps = get_desired_capabilities(app, platform='7.0', device_name="SLA-TL10") super(DouYinApp_2_0_0, self).__init__(desired_caps, sip, sport) # 首页滑动翻下一个视频时等待的时间 self.swip_to_next_wait_time = 1 # 点击时间等待的时间 self.click_wait_time = 2 # 滑动翻视频、粉丝、关注列表 等待的时间 self.swip_to_bottom_wait_time = 0.5 # 滑动翻视频、粉丝、关注时,每做一次至底判断滑动的次数 self.swip_times_every_assert = 10 # 点击搜索主播/音乐人时的等待时间 self.find_wait_time = 3 # 编辑editor等待时间 self.editor_wait_time = 0.5 # 定义需要点击的元素 self.buttons = AppButtonManager.checkout(app_version='2.1.0', device_name='SLA-TL10')