I have developed a static iOS .framework
but during its development, we figured out that its manual testing is taking much time due to a huge number of datasets.
In order to minimize its testing time, we have decided to automate this process so we can have less testing time which will empower our Quality Assurance team to test datasets within no time.
Specifically, we want to execute XCUITests
on one of the framework's UIViewController
on which SDK is taking UITextfield
input i.e. we want to automate form filling exercise for that particular view controller.
I have successfully captured activities and interactions using XCUITest
but I want to execute those test functions at the time when a user lands on that view controller. Currently, those test functions are executed on time i.e. even SDK is not being initiated.
My question is, is it possible to execute XCUITests
on the static iOS framework? If yes, is it possible to start execution on the desired event?
Thanks