美文网首页
小菜鸡Appium掉坑之搜索输入中文

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

作者: 带肥肉的羊肉串 | 来源:发表于2018-11-08 16:53 被阅读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");

相关文章

网友评论

      本文标题:小菜鸡Appium掉坑之搜索输入中文

      本文链接:https://www.haomeiwen.com/subject/gniwxqtx.html