在执行appium自动化测试的时候,需要点击软件盘上的搜索按钮. 具体操作步骤如下: 前提:需要事先安装搜狗输入法 1.唤醒软件盘,可以封装到一个类里,用到的时候随时调用. import os#调起sougou输入法软键盘command2 = 'adb shell ime set com.sohu.inputmethod.sogou/.SogouIME'#调起Unicode键盘command3 = 'adb shell ime set io.appium.android.ime/.Unicode
在android测试过程中,会遇到要点击一下屏幕的需求. 在appium旧版本使用下面代码点击android屏幕,没有报错.Map tap = new HashMap(); tap.put("tapCount", new Double(2));tap.put("touchCount", new Double(1)); tap.put("duration", new Double(0.5)); tap.put("x", new
用driver.tap(1, 10, 10, 800); 点击屏幕,经常提示:An unknown server-side error occurred while processing the command 测试中断,经查找资料,如下方法很好用: @SuppressWarnings("unchecked") public void touchScreen(){ @SuppressWarnings("rawtypes") Map tap = new HashMap