Appium appium 点击键盘上的 “搜索” 键的方法

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 15:53   2117   0

首先我安装的是搜狗输入法,其它的输入法没有去尝试,有兴趣的朋友可以去试一下。(微信APP)

先去cmd中查看一下你的真机中的输入法

cmd中输入 adb shell ime list -s

然后代码中的方法是:

public void findAccountByKeyboard() throws InterruptedException, IOException{ Thread.sleep(2000); driver.findElementById("com.tencent.mm:id/f_").click(); driver.findElementByXPath("//android.widget.TextView[@text='Add Contacts']").click(); driver.findElementByXPath("//android.widget.TextView[@text='Official Accounts']").click(); driver.findElementByXPath("//android.widget.EditText[@text='Search Official Accounts']").sendKeys("*****服务号"); Thread.sleep(3000); // driver.pressKeyCode(66); excuteAdbShell("adb shell ime set com.sohu.inputmethod.sogou/.SogouIME"); //再次点击输入框,调取键盘 driver.findElementByXPath("//android.widget.EditText[@text='******服务号']").click(); //点击右下角的搜索,即ENTER键 driver.pressKeyCode(AndroidKeyCode.ENTER); } /** * 执行adb命令 * @param s 要执行的命令 */ private void excuteAdbShell(String s) { Runtime runtime=Runtime.getRuntime(); try{ runtime.exec(s); }catch(Exception e){ System.out.println("执行命令:"+s+"出错"); } }

转载于:https://www.cnblogs.com/ht22ht22/p/8761718.html

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP