With Android N, the method Solo#getView(int) returns a view on a previous activity (rather than a view on the current activity) when a previous activity in the stack has a view with the same id.
After debugging and analyzing the code, it seems that this happens because Android N uses a new DecorView class and the method ViewFetcher#isDecorView(view) does not recognize it.
With Android N, the method Solo#getView(int) returns a view on a previous activity (rather than a view on the current activity) when a previous activity in the stack has a view with the same id.
After debugging and analyzing the code, it seems that this happens because Android N uses a new DecorView class and the method ViewFetcher#isDecorView(view) does not recognize it.
Tested in Robotium 5.5.4 and 5.6.3
Thanks