How to get activity from another process using Robotium

I have a main action, and when I click on a button in the main action, it goes to a different action than it does in another process. Is it possible to track / get this activity using robotium / integrate with robotics using other codes

+6
source share
1 answer

Unfortunately not. Robotium is based on objects of Android tools, which are limited to work only within the framework of the toolkit for this target Activity (how you define the target process in the test manifest file).

I do not know how it behaves in cases where the target process has a certain common user identifier, although ...

+2
source

Source: https://habr.com/ru/post/894355/


All Articles