user2331454
user2331454

Reputation: 345

Track all Android Input Events

Do you know any Option to track all Input-Events of an application?

I want to keep all input events of one "instance" of using an application for automated testing. For instance those: - Click on EditText1 - Type in the Text "abc" - Click on button "Ok" - New Activity starts - Click xy

This should happen without rewriting the whole code of the app.

I currently don't know where to start :/

Edit: I want to go into the direction of Testdroid or Monkeytalk.

Upvotes: 1

Views: 1255

Answers (1)

Chintan Soni
Chintan Soni

Reputation: 25267

You may need to use Logging using on events likeonclick() events, TextWatcher methods, onTouch() events, etc. But you cannot upload this project for GooglePlay because in the process of uploading and signing the app, it asks for removing all the Logging statements from our Application Project.

Upvotes: 1

Related Questions