Android 可用性测试设置(ddms、屏幕截图、touchevent)

发布于 2024-12-29 15:38:46 字数 378 浏览 2 评论 0原文

我正在考虑一个易于使用的 Android 可用性测试工具,它允许用户在应用测试期间记录和记录相关信息。作为第一个结果,我希望每次用户与触摸屏交互时都截取屏幕截图,其中显示触摸事件的位置、持续时间和类型。

由于 Android 不允许我轻松截取屏幕截图,并且无法从服务记录触摸事件,因此我的问题是:

  1. Logcat 是否为我提供任何有关 TouchEvents 的信息(我尝试过,但我无法生成任何触摸日志)
  2. 是否可以从终端调用 ddms-Screenshot-action? (./ddms-截屏)

im thinking of an easy-to-use android usability testing tool, that will allow the user to record and log relevant information during app testing. As a first result i would like to have a screenshot taken each time the user interacts with the touchscreens where the position, duration and type of the touch event is shown.

As android does not allow me to take screenshots easily and as its not possible to log touchevents from an service here are my questions:

  1. Does Logcat give me any information about TouchEvents (I tried but i couldt produce any touch-Logs)
  2. Is it possible to evoke the ddms-Screenshot-action from terminal? (./ddms -takescreenshot)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

国产ˉ祖宗 2025-01-05 15:38:46

Logcat 是否向我提供有关 TouchEvents 的任何信息(我尝试过,但无法生成任何触摸日志)

否。

是否可以从终端调用 ddms-Screenshot-action? (./ddms -takescreenshot)

不通过 ddms 命令 AFAIK。使用 monkeyrunner (如另一个答案建议的那样),或者将您自己的代码写入 DDMS 使用的 JAR 文件。我用它创建了一个软件投影仪;另一位开发人员扩展了这个概念

Does Logcat give me any information about TouchEvents (I tried but i couldt produce any touch-Logs)

No.

Is it possible to evoke the ddms-Screenshot-action from terminal? (./ddms -takescreenshot)

Not via the ddms command AFAIK. Either use monkeyrunner (as another answer suggested), or write your own code to the JAR file that DDMS uses. I used that to create a software projector; another developer extended that concept.

苏璃陌 2025-01-05 15:38:46

如果你想自动化这些事情,你可以使用 Monkey Runner 工具,它特别有一个自动截屏的调用。

http://developer.android.com/guide/developing/tools/monkeyrunner_concepts.html

它专门运行 Python 脚本,您可以用它来设计自动回归测试。

If you are looking to automate these things, you can use the Monkey Runner tool, it specifically has a call to take screen shots automatically.

http://developer.android.com/guide/developing/tools/monkeyrunner_concepts.html

It specifically runs Python scripts, that you would use to design an automated regression test.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文