def login_by_account(plan, page, app, device): account_view = nodeController.get_node_by_id(page, app.loginViews[0]) password_view = nodeController.get_node_by_id(page, app.loginViews[1]) login_btn = nodeController.get_node_by_id(page, app.loginViews[2]) account = device.accountInfo[0] password = device.accountInfo[1] if account_view in page.editTexts and password_view in page.editTexts and login_btn in page.clickableNodes: Saver.save_crawler_log(device.logPath, "Login begin .") appController.type_text(device, account_view, account) if appController.keyboard_is_shown(device): appController.click_back(device) appController.type_text(device, password_view, password) if appController.keyboard_is_shown(device): appController.click_back(device) appController.tap_node(device, login_btn) time0 = time.time() while True: time1 = time.time() if time1 - time0 > 10: Saver.save_crawler_log(device.logPath, "Login failed , time out .") appController.click_back(device) break info = get_top_activity_info(device) if info['activity'] != app.loginActivity: Saver.save_crawler_log(device.logPath, "Login successful .") break else: appController.click_back(device) del page, account_view, password_view, login_btn, account, password return get_page_info(plan, app, device)
def check_page_after_operation(plan, app, device, page_before_run, node): Saver.save_crawler_log(device.logPath, "Step : Check page after operation") # if app crashed after crawl , save log & start app ,continue if Setting.TimeModel == 'Limit': time_now = datetime.datetime.now() if (time_now - device.beginCrawlTime).seconds > (Setting.LimitTime * 60): Saver.save_crawler_log_both( plan.logPath, device.logPath, "Step : crawl time out , finish crawl.") del plan, app, device, time_now return None while True: info = get_top_activity_info(device) package = info['packagename'] activity = info['activity'] if len(package) != 0: del info break del info times = 0 while package != app.packageName: if not appController.app_is_running(device, app): Saver.save_error_logcat(plan, device) appController.clean_device_logcat(device) HtmlMaker.make_failed_result_html(plan, app) MailSender.send_failed_mail_first(plan, app, device) if not re_crawl_mack_error_node( plan, app, device, page_before_run, node, app.launcherActivity) and Setting.KeepRun: appController.kill_app(app) appController.start_activity(device, app.packageName, app.launcherActivity) else: Saver.save_crawler_log_both( plan.logPath, device.logPath, "Step : crawl app " + device.crawlStatue + ', break crawling..') del plan, app, device, package, activity return None Saver.save_crawler_log(device.logPath, 'back to ' + app.packageName) device.save_screen_jump_out(package, activity) appController.click_back(device) times += 1 top_activity_info = get_top_activity_info(device) package = top_activity_info['packagename'] activity = top_activity_info['activity'] if times > 3: Saver.save_crawler_log( device.logPath, "can't back to " + app.packageName + " after click back 3 times , Restart app") appController.start_activity(device, app.packageName, app.launcherActivity) top_activity_info = get_top_activity_info(device) top_app_package = top_activity_info['packagename'] if top_app_package == app.packageName: del top_activity_info, times, top_app_package break # if keyboard shown , click device back btn to close keyboard if appController.keyboard_is_shown(device): appController.click_back(device) if activity == 'com.mob.tools.MobUIShell': Saver.save_crawler_log(device.logPath, "close login web QQ/Weibo") appController.click_back(device) page = get_page_info(plan, app, device) if page is not None and page.currentActivity == app.loginActivity and Setting.Login: app.update_loginactivity_entry(node) page = login_by_account(plan, page, app, device) del plan, app, device, page_before_run, node return page