Post #1861681
2026-04-17 09:10 UTC
How are people writing their UI tests for iOS these days? I've used KIF earlier with great results, running UI tests in-process greatly simplifies things. It feels dated through, and bringing in KIF now would feel like a risk. Any alternatives? #iosdev #ios
Replies (2)
-
@nemesisprime@iosdev.space 2026-04-17 15:18
@vrutberg@masto.nu 👀 also curious as this is something I've been struggling with.
-
@miguelcabeca@hachyderm.io 2026-04-17 19:04
@vrutberg@masto.nu these days I avoid UItests and instead rely on snapshot tests using Unit test tools. The only thing I cannot test is the connection from the views to the model, like making sure that if I press a button a certain method on the model is called. Everything else is pretty much covered by unit tests and snapshot tests.