gpt4 book ai didi

java - 无法在Java中使用appium单击硬件菜单按钮

转载 作者:行者123 更新时间:2023-11-29 20:55:26 26 4
gpt4 key购买 nike

我正致力于使用 Java 语言的 Appium 实现移动原生应用程序的自动化。我想点击硬件菜单按钮

我正在使用下面的代码

JavascriptExecutor js = (JavascriptExecutor) driver;
js.executeScript("mobile: keyevent", 82);

它给我以下错误信息

An unknown server-side error occurred while processing the command. (WARNING: The server did not provide any stacktrace information)(..)

如果我的代码有任何错误,请告诉我。

最佳答案

driver.execute_script("mobile: keyevent", {"keycode": 82})

或者如果上面的方法不起作用试试这个:-

  HashMap swipeObject = new HashMap(); swipeObject.put("keycode", 82);

((JavascriptExecutor ) driver).executeScript("mobile: keyevent", swipeObject);

关于java - 无法在Java中使用appium单击硬件菜单按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27898637/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com