This project's purpose is to simplify UI testing on iOS.
SwiftSnapshotTesting helps to check application's UI with a few lines of code. No need to manually manage reference images any more.
This framework is able to:
- take a screenshot of a full screen, screen without status bar or any
XCUIElementindividually - record the screenshot on your Mac
- compare and highlight the difference between new screenshots and previously recorded ones using
Metal
Internally SwiftSnapshotTesting operates with MTLTextures during the snapshot comparison. Also it uses Resources Bridge Monitor app to read and write files on Mac.
- Swift
5.2 - iOS
11.0
Install via Cocoapods
pod 'SwiftSnapshotTesting'-
Create a subclass of
SnapshotTestCaseclass MyCoolUITest: SnapshotTestCase { ...
-
Choose folder on your Mac to store the reference snapshots by overriding
snapshotsReferencesFoldervariableoverride var snapshotsReferencesFolder: String { "/Path-To-Snapshots-Folder/" }
-
Assert UI element
assert(element: XCUIElement, testName: String, ignore rects: Set<CGRect>, configuration: Configuration, recording: Bool) throws
element- element to compare.testName- name of the test. It will be used in the name of the reference image filerects- rects (possible subviews' frames) to ignore.configurationcurrent test configuration.recording- by settingtruethis argument you will record the reference snapshot. By settingfalseyou will compare the element with previously recorded snapshot.
-
Assert screenshot
assert(screenshot: XCUIScreenshot, testName: String, ignore ignorables: Set<Ignorable>, configuration: Configuration, recording: Bool) throws
screenshot- screenshot to test.ignorables- UI elements to ignore.Ignorablecan beXCUIElement, customCGRector predefined.statusBar.
After each assertion test SnapshotTestCase provides an attachment containing per-pixel L2 distance between snapshot and the corresponding reference and MTLTexture with highlighted difference. You are able to look at the diff using MTLTextureViewer.
Your can find a small example of usage of SwiftSnapshotTesting in the ImageFlip repo.
MIT
