In my app I\'m adding some UI tests. With one test method everything works perfectly, but when I added second method, the test is failing because of the following error:
This sounds like the app isn't being torn down correctly after the first test is completed. Try explicitly killing the app in your tear down method.
- (void)tearDown { [[[XCUIApplication alloc] init] terminate]; [super tearDown]; }