Does KIF provide any special support for tapping back buttons or will I have to do something like this?
// in parent ViewController
self.navigationItem.backBarButtonItem.isAccessibilityElement = YES;
self.navigationItem.backBarButtonItem.accessibilityLabel = @"Back";
// in test class
[tester tapViewWithAccessibilityLabel: @"Back"]];
The latter would be a bit unfortunate, because my code currently does not have back buttons at all and self.navigationItem.backBarButtonItem
is and can normally remain nil
(see here): the description in the storyboard suffices so far.