I want to configure those tests that use Selenium Objective-C . This would allow me to connect to Appium , while recording acceptance tests in the same language in which I am writing the application.
After loading and adding the framework to my project, I added a test target, imported the framework, and ran the tests. I got the expected type errors around NSPoint, NSSizeetc., which are all contained in the library.
After some research, I realized that Selenium Objective-C uses a version of Mac OS Foundation.frameworkthat contains classes NSPoint, NSSizeetc. However, my application is an iOS application, so in Foundation.frameworkmine CGPoint, CGSizeetc.
My question is: could anyone use Selenium Objective-C? If so, how did you achieve this?
Environment: Xcode 5, iOS Simulator 7.0 iPad.
source
share