Reputation: 1
I am trying to integrate KIF with Xcode using cocoapods. When i try to build the workspace, i face the following issue.
Its searching for the Pods-Framework shell script under the applications Xcode project but the shell script is present under the pods Xcode project.I tried changing the path but it gets replaced automatically when i build it. Can anyone provide a solution?
Upvotes: 0
Views: 130
Reputation: 9801
Recently I have installed KIF framework for one of my projects. I have followed the below steps,
pod 'KIF', '~> 3.2.0' pod 'Specta', '~> 1.0.2'
Eg: [tester enterText:@"[email protected]" intoViewWithAccessibilityLabel:@"UsernameTF"];
I didn't configure anything in Build Settings. But,am able to execute the test cases. Thanks.
Upvotes: 0
Reputation: 977
I think you have add KIF.Framework in your normal target . Please add these frameworks in new unit test case target created by you.
Upvotes: 0