Tarkik
Tarkik

Reputation: 177

How to resume Android Espresso test after 'Instrumentation run failed due to 'Process crashed.''?

I have Espresso test have more than 120 test cases but if application crashes 'Instrumentation runs failed due to 'Process crashed.' The test does not resumes.

Upvotes: 0

Views: 994

Answers (1)

Tarkik
Tarkik

Reputation: 177

After some research, I found Android Test Orchestrator. It is a tool-supported for AndroidJUnitRunner version 1.0 or higher, which solves two major issue of UI Testing

  1. Occasional crashes which stop the entire test suite.
  2. Test overlap.

For more details, you can see here

Upvotes: 1

Related Questions