appium自动化程序教程

现在我们在一个项目中,要进行自动化处理,自动化的原则就是解放双手,我们先写一个简单的自动化用例,使我们的Java代码实现安装apk,然后启动,滑动,自动输入账号密码,自动登录,首页板块每个功能模块进行点击。

代码如下:

package com.glen.demo;import io.appium.java_client.AppiumDriver;import io.appium.java_client.android.AndroidDriver;import io.appium.java_client.android.AndroidKeyCode;import java.io.File;import java.net.URL;import org.junit.After;import org.junit.Before;import org.junit.Test;import org.openqa.selenium.By;import org.openqa.selenium.remote.CapabilityType;import org.openqa.selenium.remote.DesiredCapabilities;public class DreamHouseClick {     private static AppiumDriver driver;                         @Before        public void setUp() throws Exception {            //设置apk的路径            File classpathRoot = new File(System.getProperty("user.dir"));            File appDir = new File(classpathRoot, "apps");            File app = new File(appDir, "DreamHouse.apk");              //设置自动化相关设置            DesiredCapabilities capabilities = new DesiredCapabilities();            capabilities.setCapability(CapabilityType.BROWSER_NAME, "");            capabilities.setCapability("platformName", "Android");            capabilities.setCapability("deviceName", "DreamHouse");               //设置安卓系统版本            capabilities.setCapability("platformVersion", "4.2.2");            //设置apk路径            capabilities.setCapability("app", app.getAbsolutePath());             //设置app的主包名和主类名            capabilities.setCapability("appPackage", "com.uama.dreamhouseforlc");            capabilities.setCapability("appActivity", "com.uama.dreamhouseforlc.actvity.LaunchActivity");               //初始化            //driver = new AppiumDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);              driver = new AndroidDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);              }                       @After        public void tearDown() throws Exception {            //driver.quit();               System.out.println("开始滑动!");        }                           @Test        public void swipe() throws InterruptedException{            Thread.sleep(10000);            int width = driver.manage().window().getSize().width;            int height = driver.manage().window().getSize().height;            driver.swipe(width *7/8, height/6, width/8, height/6, 500);            System.out.println("滑动第一页!");            driver.swipe(width *7/8, height/6, width/8, height/6, 500);            Thread.sleep(5000);            System.out.println("滑动第二页!");            driver.swipe(width *7/8, height/6, width/8, height/6, 500);            System.out.println("滑动第三页!");            Thread.sleep(5000);            Thread.sleep(5000);            //点击第四页立即启用            driver.findElement(By.className("android.widget.ImageView")).click();             {           //输入帐号           driver.findElementById("com.uama.dreamhouseforlc:id/edit_userName").click();            Thread.sleep(1000);           driver.findElementById("com.uama.dreamhouseforlc:id/edit_userName").sendKeys("18868890572");           //输入密码           driver.findElementById("com.uama.dreamhouseforlc:id/edit_userPass").click();           Thread.sleep(1000);           driver.findElementById("com.uama.dreamhouseforlc:id/edit_userPass").sendKeys("123456");           Thread.sleep(1000);           //点击确认           driver.findElementById("com.uama.dreamhouseforlc:id/text_login_index").click();           Thread.sleep(2000);             }                          //往下滑动             swipedown();                         //点击项目信息             ObjectProject();                          //点击楼盘图片             BuildingPictures();                          //点击周边配套             Peripheralmatching();                          //工程进度             Projectprogress();                          //看房预约             Housereservation();                          //意见征询             Opinionconsultation();                         //绿城信用贷             Greencredit();                          //黄龙饭店             DragonHotel();                                                   //生活服务             Lifeservice();             System.out.println("生活服务头!");             //健康服务             Healthservices();                          //金融服务             financialservice();                          //文化服务             CulturalService();                          //头部切换             Chooserealestate();                                       //导航             Navigation();                                       //动态             dynamic();                                                   //动态详情             DynamicDetails();                                     //-----------------底部板块--------------------             //成长记             Citylengthrecord();                                      //业工会             Tradeunion();                                       //我的             my();        }        //登陆后首页往下刷新        private void swipedown() throws InterruptedException {            int width = driver.manage().window().getSize().width;            int height = driver.manage().window().getSize().height;           Thread.sleep(2000);            driver.swipe(width/2,height/4, width/2, 3*height/4,1000);            Thread.sleep(2000);                    }                //点击项目信息,然后点击返回                private void ObjectProject() throws InterruptedException {             driver.findElement(By.name("项目信息")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                //点击楼盘图片,然后点击返回        private void BuildingPictures() throws InterruptedException {             driver.findElement(By.name("楼盘图片")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                              }                        //点击周边配套        private void Peripheralmatching() throws InterruptedException {             driver.findElement(By.name("周边配套")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                        //工程进度        private void Projectprogress() throws InterruptedException{            driver.findElement(By.name("工程进度")).click();            Thread.sleep(1000);            ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);                    }                //看房预约        private void Housereservation() throws InterruptedException{             driver.findElement(By.name("看房预约")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                //意见征询        private void Opinionconsultation() throws InterruptedException{             driver.findElement(By.name("意见征询")).click();             //点击确认               driver.findElementById("com.uama.dreamhouseforlc:id/know").click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }        //绿城信贷        private void Greencredit() throws InterruptedException {             driver.findElement(By.name("绿城信用贷")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                        //黄龙饭店        private void DragonHotel()throws InterruptedException {             driver.findElement(By.name("黄龙饭店")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                  //滑动未实现                //生活服务        private void Lifeservice()throws InterruptedException  {                         driver.findElement(By.name("生活服务")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);             System.out.println("生活服务尾部");            return;                      }                        //健康服务        private void Healthservices()throws InterruptedException {            driver.findElement(By.name("健康服务")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                //金融服务        private void financialservice()throws InterruptedException  {             driver.findElement(By.name("金融服务")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                        //文化服务        private void CulturalService()throws InterruptedException {             driver.findElement(By.name("文化服务")).click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                        //头部楼房切换        private void Chooserealestate() throws InterruptedException {            driver.findElementById("com.uama.dreamhouseforlc:id/tx_bar_title").click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                        //导航        private void Navigation() throws InterruptedException {            driver.findElementById("com.uama.dreamhouseforlc:id/navigate").click();             Thread.sleep(1000);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }                                   //动态            private void dynamic()throws InterruptedException {                driver.findElement(By.name("动态")).click();                 Thread.sleep(1000);                 ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);                return;                             }                           //动态详情            private void DynamicDetails()throws InterruptedException {                driver.findElementById("com.uama.dreamhouseforlc:id/tv_adrolling").click();                 Thread.sleep(1000);                 ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);                return;              }        //----------------------------底部板块------------------------------------        //城长记        private void Citylengthrecord()  throws InterruptedException {              driver.findElementById("com.uama.dreamhouseforlc:id/tab_grow").click();             Thread.sleep(1500);             ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);            return;                      }               //业工会        private void Tradeunion()throws InterruptedException {              driver.findElementById("com.uama.dreamhouseforlc:id/tab_yegong").click();                 Thread.sleep(1500);                 ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);                return;                      }                //我的        private void my() throws InterruptedException{              driver.findElementById("com.uama.dreamhouseforlc:id/tab_mine").click();                 Thread.sleep(1500);                 ((AndroidDriver) driver).sendKeyEvent(AndroidKeyCode.BACK);                return;                      }}

软件截图如下:

wKioL1eaFq2wcOyzAACBDdHcMWw735.jpg-wh_50


appium日志如下:

> Checking if an update is available> Launching Appium server with command: C:\Program Files (x86)\Appium\node.exe lib\server\main.js --address 127.0.0.1 --port 4723 --platform-name Android --platform-version 23 --automation-name Appium --log-no-color> Update not available> info: Welcome to Appium v1.4.16 (REV ae6877eff263066b26328d457bd285c0cc62430d)> info: Appium REST http interface listener started on 127.0.0.1:4723> info: [debug] Non-default server args: {"address":"127.0.0.1","logNoColors":true,"platformName":"Android","platformVersion":"23","automationName":"Appium"}> info: Console LogLevel: debug> info: --> POST /wd/hub/session {"desiredCapabilities":{"platformVersion":"4.2.2","app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"DreamHouse","browserName":"","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"}}> info: Client User-Agent string: Apache-HttpClient/4.3.4 (java 1.5)> info: [debug] Using local app from desired caps: C:\workspace\Appium_demo\apps\DreamHouse.apk> info: [debug] Creating new appium session 198560cc-d57b-407b-8c7b-51712a7e14a5> info: Starting android appium> info: [debug] Getting Java version> info: Java version is: 1.7.0_55> info: [debug] Checking whether adb is present> info: [debug] Using adb from E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe> info: [debug] Using fast reset? true> info: [debug] Preparing device for session> info: [debug] Checking whether app is actually present> info: Retrieving device> info: [debug] Trying to find a connected android device> info: [debug] Getting connected devices...> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe devices> info: [debug] 1 device(s) connected> info: Found device 127.0.0.1:62001> info: [debug] Setting device id to 127.0.0.1:62001> info: [debug] Waiting for device to be ready and to respond to shell commands (timeout = 5)> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 wait-for-device> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "echo 'ready'"> info: [debug] Starting logcat capture> info: [debug] Getting device API level> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop ro.build.version.sdk"> info: [debug] Device is at API Level 19> info: Device API level is: 19> info: [debug] Extracting strings for language: default> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop persist.sys.language"> info: [debug] Current device persist.sys.language: zh> info: [debug] java -jar "C:\Program Files (x86)\Appium\node_modules\appium\node_modules\appium-adb\jars\appium_apk_tools.jar" "stringsFromApk" "C:\workspace\Appium_demo\apps\DreamHouse.apk" "C:\Users\FW\AppData\Local\Temp\com.uama.dreamhouseforlc" zh> info: [debug] Reading strings from converted strings.json> info: [debug] Setting language to default> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 push "C:\\Users\\FW\\AppData\\Local\\Temp\\com.uama.dreamhouseforlc\\strings.json" /data/local/tmp> info: [debug] Checking whether aapt is present> info: [debug] Using aapt from E:\adt-bundle-windows-x86_64-20140321\sdk\build-tools\android-4.4.2\aapt.exe> info: [debug] Retrieving process from manifest.> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\build-tools\android-4.4.2\aapt.exe dump xmltree C:\workspace\Appium_demo\apps\DreamHouse.apk AndroidManifest.xml> info: [debug] Set app process to: com.uama.dreamhouseforlc> info: [debug] Not uninstalling app since server not started with --full-reset> info: [debug] Checking app cert for C:\workspace\Appium_demo\apps\DreamHouse.apk.> info: [debug] executing cmd: java -jar "C:\Program Files (x86)\Appium\node_modules\appium\node_modules\appium-adb\jars\verify.jar" C:\workspace\Appium_demo\apps\DreamHouse.apk> info: [debug] App already signed.> info: [debug] Zip-aligning C:\workspace\Appium_demo\apps\DreamHouse.apk> info: [debug] Checking whether zipalign is present> info: [debug] Using zipalign from E:\adt-bundle-windows-x86_64-20140321\sdk\tools\zipalign.exe> info: [debug] Zip-aligning apk.> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\tools\zipalign.exe -f 4 C:\workspace\Appium_demo\apps\DreamHouse.apk C:\Users\FW\AppData\Local\Temp\116628-1520-r8zdej\appium.tmp> info: [debug] MD5 for app is 3bac6ec4271550c37a256fff5df09b0d> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "ls /data/local/tmp/3bac6ec4271550c37a256fff5df09b0d.apk"> info: [debug] Getting install status for com.uama.dreamhouseforlc> info: [debug] Getting device API level> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop ro.build.version.sdk"> info: [debug] Device is at API Level 19> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "pm list packages -3 com.uama.dreamhouseforlc"> info: [debug] App is not installed> info: Installing App> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "mkdir -p /data/local/tmp/"> info: [debug] Removing any old apks> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "ls /data/local/tmp/*.apk"> info: [debug] Found an apk we want to keep at /data/local/tmp/3bac6ec4271550c37a256fff5df09b0d.apk> info: [debug] Couldn't find any apks to remove> info: [debug] Uninstalling com.uama.dreamhouseforlc> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "am force-stop com.uama.dreamhouseforlc"> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 uninstall com.uama.dreamhouseforlc> info: [debug] App was not uninstalled, maybe it wasn't on device?> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "pm install -r /data/local/tmp/3bac6ec4271550c37a256fff5df09b0d.apk"> info: [debug] Forwarding system:4724 to device:4724> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 forward tcp:4724 tcp:4724> info: [debug] Pushing appium bootstrap to device...> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 push "C:\\Program Files (x86)\\Appium\\node_modules\\appium\\build\\android_bootstrap\\AppiumBootstrap.jar" /data/local/tmp/> info: [debug] Pushing settings apk to device...> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 install "C:\Program Files (x86)\Appium\node_modules\appium\build\settings_apk\settings_apk-debug.apk"> info: [debug] Pushing unlock helper app to device...> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 install "C:\Program Files (x86)\Appium\node_modules\appium\build\unlock_apk\unlock_apk-debug.apk"> info: Starting App> info: [debug] Attempting to kill all 'uiautomator' processes> info: [debug] Getting all processes with 'uiautomator'> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "ps 'uiautomator'"> info: [debug] No matching processes found> info: [debug] Running bootstrap> info: [debug] spawning: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell uiautomator runtest AppiumBootstrap.jar -c io.appium.android.bootstrap.Bootstrap -e pkg com.uama.dreamhouseforlc -e disableAndroidWatchers false> info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: numtests=1> info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: stream=> info: [debug] [UIAUTOMATOR STDOUT] io.appium.android.bootstrap.Bootstrap:> info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: id=UiAutomatorTestRunner> info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: test=testRunServer> info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: class=io.appium.android.bootstrap.Bootstrap> info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS: current=1> info: [debug] [UIAUTOMATOR STDOUT] INSTRUMENTATION_STATUS_CODE: 1> info: [debug] [BOOTSTRAP] [debug] Socket opened on port 4724> info: [debug] [BOOTSTRAP] [debug] Appium Socket Server Ready> info: [debug] [BOOTSTRAP] [debug] Loading json...> info: [debug] [BOOTSTRAP] [debug] json loading complete.> info: [debug] [BOOTSTRAP] [debug] Registered crash watchers.> info: [debug] Waking up device if it's not alive> info: [debug] Pushing command to appium work queue: ["wake",{}]> info: [debug] [BOOTSTRAP] [debug] Client connected> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"wake","params":{}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: wake> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "dumpsys window"> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Screen already unlocked, continuing.> info: [debug] Pushing command to appium work queue: ["getDataDir",{}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDataDir","params":{}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: getDataDir> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":"\/data","status":0}> info: [debug] dataDir set to: /data> info: [debug] Pushing command to appium work queue: ["compressedLayoutHierarchy",{"compressLayout":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"compressedLayoutHierarchy","params":{"compressLayout":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: compressedLayoutHierarchy> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":false,"status":0}> info: [debug] Getting device API level> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop ro.build.version.sdk"> info: [debug] Device is at API Level 19> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "am start -S -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -f 0x10200000 -n com.uama.dreamhouseforlc/com.uama.dreamhouseforlc.actvity.LaunchActivity"> info: [debug] Waiting for pkg "com.uama.dreamhouseforlc" and activity "com.uama.dreamhouseforlc.actvity.LaunchActivity" to be focused> info: [debug] Getting focused package and activity> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "dumpsys window windows"> info: [debug] executing cmd: E:\adt-bundle-windows-x86_64-20140321\sdk\platform-tools\adb.exe -s 127.0.0.1:62001 shell "getprop ro.build.version.release"> info: [debug] Device is at release version 4.4.2> info: [debug] Device launched! Ready for commands> info: [debug] Setting command timeout to the default of 60 secs> info: [debug] Appium session started with sessionId 198560cc-d57b-407b-8c7b-51712a7e14a5> info: <-- POST /wd/hub/session 303 14599.530 ms - 74 > info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5 {}> info: [debug] Responding to client with success: {"status":0,"value":{"platform":"LINUX","browserName":"","platformVersion":"4.4.2","webStorageEnabled":false,"takesScreenshot":true,"javascriptEnabled":true,"databaseEnabled":false,"networkConnectionEnabled":true,"locationContextEnabled":false,"warnings":{},"desired":{"platformVersion":"4.2.2","app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"DreamHouse","browserName":"","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"},"app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"127.0.0.1:62001","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5 200 3.816 ms - 794 {"status":0,"value":{"platform":"LINUX","browserName":"","platformVersion":"4.4.2","webStorageEnabled":false,"takesScreenshot":true,"javascriptEnabled":true,"databaseEnabled":false,"networkConnectionEnabled":true,"locationContextEnabled":false,"warnings":{},"desired":{"platformVersion":"4.2.2","app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"DreamHouse","browserName":"","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"},"app":"C:\\workspace\\Appium_demo\\apps\\DreamHouse.apk","platformName":"Android","deviceName":"127.0.0.1:62001","appActivity":"com.uama.dreamhouseforlc.actvity.LaunchActivity","appPackage":"com.uama.dreamhouseforlc"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size {}> info: [debug] Pushing command to appium work queue: ["getDeviceSize"]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDeviceSize","params":{}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: getDeviceSize> info: [debug] Responding to client with success: {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size 200 32.040 ms - 99 {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size {}> info: [debug] Pushing command to appium work queue: ["getDeviceSize"]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"width":720,"height":1280},"status":0}> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDeviceSize","params":{}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: getDeviceSize> info: [debug] Responding to client with success: {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size 200 14.871 ms - 99 {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"width":720,"height":1280},"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform {"actions":[{"action":"press","options":{"x":630,"y":213}},{"action":"wait","options":{"ms":500}},{"action":"moveTo","options":{"x":90,"y":213}},{"action":"release","options":{}}]}> info: [debug] Pushing command to appium work queue: ["swipe",{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"swipe","params":{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: swipe> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]> info: [debug] [BOOTSTRAP] [debug] Swiping from [x=630.0, y=213.0] to [x=90.0, y=213.0] with steps: 14> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform 200 289.730 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform {"actions":[{"action":"press","options":{"x":630,"y":213}},{"action":"wait","options":{"ms":500}},{"action":"moveTo","options":{"x":90,"y":213}},{"action":"release","options":{}}]}> info: [debug] Pushing command to appium work queue: ["swipe",{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"swipe","params":{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: swipe> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]> info: [debug] [BOOTSTRAP] [debug] Swiping from [x=630.0, y=213.0] to [x=90.0, y=213.0] with steps: 14> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform 200 355.127 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform {"actions":[{"action":"press","options":{"x":630,"y":213}},{"action":"wait","options":{"ms":500}},{"action":"moveTo","options":{"x":90,"y":213}},{"action":"release","options":{}}]}> info: [debug] Pushing command to appium work queue: ["swipe",{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"swipe","params":{"startX":630,"startY":213,"endX":90,"endY":213,"steps":14}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: swipe> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]> info: [debug] [BOOTSTRAP] [debug] Swiping from [x=630.0, y=213.0] to [x=90.0, y=213.0] with steps: 14> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform 200 319.506 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"class name","value":"android.widget.ImageView"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"class name","selector":"android.widget.ImageView","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"class name","selector":"android.widget.ImageView","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding android.widget.ImageView using CLASS_NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[CLASS=android.widget.ImageView, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"1"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"1"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 10.992 ms - 87 {"status":0,"value":{"ELEMENT":"1"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/1/click {"id":"1"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"1"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"1"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/1/click 200 308.816 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/edit_userName"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userName","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userName","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/edit_userName using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/edit_userName]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"2"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"2"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 551.395 ms - 87 {"status":0,"value":{"ELEMENT":"2"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/2/click {"id":"2"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"2"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"2"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/2/click 200 632.580 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/edit_userName"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userName","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userName","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/edit_userName using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/edit_userName]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"3"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"3"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 33.709 ms - 87 {"status":0,"value":{"ELEMENT":"3"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/3/value {"id":"3","value":["18868890572"]}> info: [debug] Pushing command to appium work queue: ["element:setText",{"elementId":"3","text":"18868890572","replace":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:setText","params":{"elementId":"3","text":"18868890572","replace":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: setText> info: [debug] [BOOTSTRAP] [debug] Using element passed in.> info: [debug] [BOOTSTRAP] [debug] Attempting to clear using UiObject.clearText().> info: [debug] [BOOTSTRAP] [debug] Text remains after clearing, but it appears to be hint text.> info: [debug] [BOOTSTRAP] [debug] Text not cleared. Assuming remainder is hint text.> info: [debug] [BOOTSTRAP] [debug] Sending plain text to element: 18868890572> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/3/value 200 4927.323 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/edit_userPass"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userPass","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userPass","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/edit_userPass using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/edit_userPass]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"4"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"4"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 499.985 ms - 87 {"status":0,"value":{"ELEMENT":"4"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/4/click {"id":"4"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"4"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"4"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/4/click 200 164.939 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/edit_userPass"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userPass","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/edit_userPass","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/edit_userPass using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/edit_userPass]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"5"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"5"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 20.359 ms - 87 {"status":0,"value":{"ELEMENT":"5"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/5/value {"id":"5","value":["123456"]}> info: [debug] Pushing command to appium work queue: ["element:setText",{"elementId":"5","text":"123456","replace":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:setText","params":{"elementId":"5","text":"123456","replace":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: setText> info: [debug] [BOOTSTRAP] [debug] Using element passed in.> info: [debug] [BOOTSTRAP] [debug] Attempting to clear using UiObject.clearText().> info: [debug] [BOOTSTRAP] [debug] Sending plain text to element: 123456> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/5/value 200 4766.020 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/text_login_index"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/text_login_index","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/text_login_index","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/text_login_index using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/text_login_index]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"6"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"6"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 81.213 ms - 87 {"status":0,"value":{"ELEMENT":"6"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/6/click {"id":"6"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"6"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"6"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/6/click 200 2869.885 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size {}> info: [debug] Pushing command to appium work queue: ["getDeviceSize"]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDeviceSize","params":{}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: getDeviceSize> info: [debug] Responding to client with success: {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size 200 9.555 ms - 99 {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"width":720,"height":1280},"status":0}> info: --> GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size {}> info: [debug] Pushing command to appium work queue: ["getDeviceSize"]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"getDeviceSize","params":{}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: getDeviceSize> info: [debug] Responding to client with success: {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- GET /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/window/current/size 200 8.246 ms - 99 {"status":0,"value":{"width":720,"height":1280},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"width":720,"height":1280},"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform {"actions":[{"action":"press","options":{"x":360,"y":320}},{"action":"wait","options":{"ms":1000}},{"action":"moveTo","options":{"x":360,"y":960}},{"action":"release","options":{}}]}> info: [debug] Pushing command to appium work queue: ["swipe",{"startX":360,"startY":320,"endX":360,"endY":960,"steps":28}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"swipe","params":{"startX":360,"startY":320,"endX":360,"endY":960,"steps":28}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: swipe> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]> info: [debug] [BOOTSTRAP] [debug] Display bounds: [0,0][720,1280]> info: [debug] [BOOTSTRAP] [debug] Swiping from [x=360.0, y=320.0] to [x=360.0, y=960.0] with steps: 28> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/touch/perform 200 621.814 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"椤圭洰淇℃伅"}> warn: [DEPRECATED] The name locator strategy has been deprecated and will be removed.  Please use the accessibility id locator strategy instead.> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"椤圭洰淇℃伅","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"椤圭洰淇℃伅","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 椤圭洰淇℃伅 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=椤圭洰淇℃伅, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=椤圭洰淇℃伅, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"7"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"7"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 273.868 ms - 87 {"status":0,"value":{"ELEMENT":"7"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/7/click {"id":"7"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"7"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"7"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/7/click 200 1097.219 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> warn: [DEPRECATED] The keyevent function has been deprecated and will be removed.  Please use the pressKeyCode function instead.> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 18.037 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"妤肩洏鍥剧墖"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"妤肩洏鍥剧墖","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"妤肩洏鍥剧墖","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 妤肩洏鍥剧墖 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=妤肩洏鍥剧墖, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=妤肩洏鍥剧墖, INSTANCE=0]> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"8"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1024.384 ms - 87 {"status":0,"value":{"ELEMENT":"8"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"8"},"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/8/click {"id":"8"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"8"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"8"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/8/click 200 865.666 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 154.423 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鍛ㄨ竟閰嶅"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鍛ㄨ竟閰嶅","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鍛ㄨ竟閰嶅","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 鍛ㄨ竟閰嶅 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鍛ㄨ竟閰嶅, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鍛ㄨ竟閰嶅, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"9"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"9"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1024.398 ms - 87 {"status":0,"value":{"ELEMENT":"9"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/9/click {"id":"9"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"9"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"9"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/9/click 200 928.920 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 635.492 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"宸ョ▼杩涘害"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"宸ョ▼杩涘害","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"宸ョ▼杩涘害","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 宸ョ▼杩涘害 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=宸ョ▼杩涘害, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=宸ョ▼杩涘害, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"10"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"10"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1050.400 ms - 88 {"status":0,"value":{"ELEMENT":"10"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/10/click {"id":"10"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"10"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"10"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/10/click 200 405.537 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 121.088 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鐪嬫埧棰勭害"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鐪嬫埧棰勭害","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鐪嬫埧棰勭害","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 鐪嬫埧棰勭害 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鐪嬫埧棰勭害, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鐪嬫埧棰勭害, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"11"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"11"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 190.501 ms - 88 {"status":0,"value":{"ELEMENT":"11"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/11/click {"id":"11"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"11"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"11"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/11/click 200 1262.033 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 52.790 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鎰忚寰佽"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鎰忚寰佽","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鎰忚寰佽","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 鎰忚寰佽 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鎰忚寰佽, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鎰忚寰佽, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"12"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"12"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 733.162 ms - 88 {"status":0,"value":{"ELEMENT":"12"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/12/click {"id":"12"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"12"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"12"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/12/click 200 463.775 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/know"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/know","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/know","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/know using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/know]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"13"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"13"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 545.072 ms - 88 {"status":0,"value":{"ELEMENT":"13"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/13/click {"id":"13"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"13"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"13"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/13/click 200 1100.419 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 15.079 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"缁垮煄淇$敤璐?}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"缁垮煄淇$敤璐?,"context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"缁垮煄淇$敤璐?,"context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 缁垮煄淇$敤璐?using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=缁垮煄淇$敤璐? INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=缁垮煄淇$敤璐? INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"14"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"14"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1029.684 ms - 88 {"status":0,"value":{"ELEMENT":"14"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/14/click {"id":"14"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"14"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"14"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/14/click 200 1056.371 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 644.859 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"榛勯緳楗簵"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"榛勯緳楗簵","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"榛勯緳楗簵","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 榛勯緳楗簵 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=榛勯緳楗簵, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=榛勯緳楗簵, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"15"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"15"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1515.151 ms - 88 {"status":0,"value":{"ELEMENT":"15"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/15/click {"id":"15"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"15"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"15"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/15/click 200 643.305 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 482.080 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鐢熸椿鏈嶅姟"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鐢熸椿鏈嶅姟","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鐢熸椿鏈嶅姟","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 鐢熸椿鏈嶅姟 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鐢熸椿鏈嶅姟, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鐢熸椿鏈嶅姟, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"16"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"16"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1075.633 ms - 88 {"status":0,"value":{"ELEMENT":"16"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/16/click {"id":"16"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"16"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"16"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/16/click 200 465.378 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 419.643 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鍋ュ悍鏈嶅姟"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鍋ュ悍鏈嶅姟","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鍋ュ悍鏈嶅姟","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 鍋ュ悍鏈嶅姟 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鍋ュ悍鏈嶅姟, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鍋ュ悍鏈嶅姟, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"17"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"17"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 280.119 ms - 88 {"status":0,"value":{"ELEMENT":"17"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/17/click {"id":"17"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"17"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"17"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/17/click 200 2628.122 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 17.600 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"閲戣瀺鏈嶅姟"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"閲戣瀺鏈嶅姟","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"閲戣瀺鏈嶅姟","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 閲戣瀺鏈嶅姟 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=閲戣瀺鏈嶅姟, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=閲戣瀺鏈嶅姟, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"18"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"18"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1011.015 ms - 88 {"status":0,"value":{"ELEMENT":"18"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/18/click {"id":"18"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"18"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"18"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/18/click 200 945.761 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 622.858 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鏂囧寲鏈嶅姟"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鏂囧寲鏈嶅姟","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鏂囧寲鏈嶅姟","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 鏂囧寲鏈嶅姟 using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鏂囧寲鏈嶅姟, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鏂囧寲鏈嶅姟, INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"19"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"19"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1588.503 ms - 88 {"status":0,"value":{"ELEMENT":"19"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/19/click {"id":"19"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"19"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"19"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/19/click 200 402.469 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 86.043 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tx_bar_title"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tx_bar_title","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tx_bar_title","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tx_bar_title using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tx_bar_title]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"20"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"20"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 237.135 ms - 88 {"status":0,"value":{"ELEMENT":"20"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/20/click {"id":"20"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"20"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"20"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/20/click 200 1289.861 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 220.405 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/navigate"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/navigate","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/navigate","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/navigate using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/navigate]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"21"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"21"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 166.343 ms - 88 {"status":0,"value":{"ELEMENT":"21"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/21/click {"id":"21"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"21"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"21"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/21/click 200 1045.352 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 51.281 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"name","value":"鍔ㄦ?}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"name","selector":"鍔ㄦ?,"context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"name","selector":"鍔ㄦ?,"context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding 鍔ㄦ?using NAME with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[DESCRIPTION=鍔ㄦ? INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[TEXT=鍔ㄦ? INSTANCE=0]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"22"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"22"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 1307.869 ms - 88 {"status":0,"value":{"ELEMENT":"22"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/22/click {"id":"22"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"22"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"22"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/22/click 200 315.517 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 175.669 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tv_adrolling"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tv_adrolling","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tv_adrolling","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tv_adrolling using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tv_adrolling]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"23"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"23"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 167.067 ms - 88 {"status":0,"value":{"ELEMENT":"23"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/23/click {"id":"23"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"23"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"23"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/23/click 200 997.963 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 44.151 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tab_grow"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_grow","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_grow","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tab_grow using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tab_grow]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"24"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"24"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 206.613 ms - 88 {"status":0,"value":{"ELEMENT":"24"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/24/click {"id":"24"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"24"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"24"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/24/click 200 1341.012 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 40.236 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tab_yegong"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_yegong","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_yegong","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tab_yegong using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tab_yegong]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"25"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"25"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 76.243 ms - 88 {"status":0,"value":{"ELEMENT":"25"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/25/click {"id":"25"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"25"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"25"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/25/click 200 192.072 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 51.768 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element {"using":"id","value":"com.uama.dreamhouseforlc:id/tab_mine"}> info: [debug] Waiting up to 0ms for condition> info: [debug] Pushing command to appium work queue: ["find",{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_mine","context":"","multiple":false}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"find","params":{"strategy":"id","selector":"com.uama.dreamhouseforlc:id/tab_mine","context":"","multiple":false}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: find> info: [debug] [BOOTSTRAP] [debug] Finding com.uama.dreamhouseforlc:id/tab_mine using ID with the contextId:  multiple: false> info: [debug] [BOOTSTRAP] [debug] Using: UiSelector[INSTANCE=0, RESOURCE_ID=com.uama.dreamhouseforlc:id/tab_mine]> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":{"ELEMENT":"26"},"status":0}> info: [debug] Responding to client with success: {"status":0,"value":{"ELEMENT":"26"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element 200 64.399 ms - 88 {"status":0,"value":{"ELEMENT":"26"},"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/26/click {"id":"26"}> info: [debug] Pushing command to appium work queue: ["element:click",{"elementId":"26"}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"element:click","params":{"elementId":"26"}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: click> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/element/26/click 200 1477.026 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: --> POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent {"keycode":4}> info: [debug] Pushing command to appium work queue: ["pressKeyCode",{"keycode":4,"metastate":null}]> info: [debug] [BOOTSTRAP] [debug] Got data from client: {"cmd":"action","action":"pressKeyCode","params":{"keycode":4,"metastate":null}}> info: [debug] [BOOTSTRAP] [debug] Got command of type ACTION> info: [debug] [BOOTSTRAP] [debug] Got command action: pressKeyCode> info: [debug] Responding to client with success: {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: <-- POST /wd/hub/session/198560cc-d57b-407b-8c7b-51712a7e14a5/appium/device/keyevent 200 49.503 ms - 76 {"status":0,"value":true,"sessionId":"198560cc-d57b-407b-8c7b-51712a7e14a5"}> info: [debug] [BOOTSTRAP] [debug] Returning result: {"value":true,"status":0}> Killed Node Server.> Appium server process ended

日志过程中输入中文乱码,这个问题我还没有找到解决方法,如有高人请留下方法,谢谢。

本文出自 “ghost” 博客,请务必保留此出处http://fangwei009.blog.51cto.com/5234706/1831462

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值