Running UI Tests on iOS With Ludicrous Speed

The PSPDFKit team shares there strategy and experience writing tests for iOS. They use KIF (custom fork), they don’t use XCUI (yet?) and they have a trick for improving the speed of UI tests. Nice post.
https://pspdfkit.com/blog/2016/running-ui-tests-with-ludicrous-speed/

EarlGrey – iOS Functional UI Testing Framework

This week Google open sourced a new iOS Functional UI testing framework – EarlGrey. EarlGrey works in conjunction with the XCTest framework and integrates with Xcode’s Test Navigator so you can run tests directly from Xcode. Promising..
http://googledevelopers.blogspot.co.il/2016/02/earlgrey-ios-functional-ui-testing.html

Handling Android runtime permissions in UI tests

Testing the new Android Permissions is a pain. Espresso won’t work because the Permissions Dialog are not inside the app package. This is a quick guide on how to use UIAutomator for that.
View at Medium.com