小菜鸡Appium掉坑之搜索输入中文

2018-11-08  本文已影响7人  带肥肉的羊肉串

DesiredCapabilities加入:
cap.setCapability("unicodeKeyboard", "True");
cap.setCapability("resetKeyboard", "True");

在搜索框中输入中文:
driver.findElementById("com.xxx.xxx/det_search_input").sendKeys("测试");

切换输入法到搜狗或者其他:
excuteAdbShell("adb shell ime set com.sohu.inputmethod.sogou/.SogouIME");
driver.findElementById("com.xxx.xxx/det_search_input").click();

无奈的用像素的形式,点击搜索按钮
excuteAdbShell("adb shell input tap 1000 1700");

上一篇下一篇

猜你喜欢

热点阅读