Reputation: 7246
By the help of XCTest and Accessibility technology we are able to test UI and able to record UI Flow . So is there any procedure to test Data which are coming from the Server side in the subclass of XCTestCase , which help in the data validation as well as UI Validation at same time .
Upvotes: 0
Views: 380
Reputation: 7659
If you want to test data coming from your server, this should be tested outside of a UI test. This would usually be tested completely separately from the client application.
XCTest does not allow the user to access any data directly from the target application, and only provides an interface to UI elements.
Upvotes: 1