IWebDriver - iphone Selenium

I got this to work before that, so I know it is possible, but I tried it on a new machine.

I have OS X 10.8.2, Xcode 4.6, iPad 6.1 and try to do this:

Iphonedriver selenium

I get to the point where I am building a project in Xcode and getting this error:

Check Dependencies

No architectures to compile (ONLY_ACTIVE_ARCH = YES, active arch = armv7, VALID_ARCHS = i386).

My architecture is set to: Standard (armv7, armv7s), Build Active: Yes, Valid architectures: armv7s armv7,

The project is signed by code. Any help is appreciated. I know that I missed something obvious. Let me know if I left something or you need more information. I reviewed the following SO questions and other similar ones:

SO Link1 SO Link2

I was hoping someone had some experience with iWebDriver. Ultimately, I will use this in a GRID 2 configuration.

+5
source share
2 answers

"armv7 armv7s i386" is what he wanted for all the fields "Valid architectures" (debugging and release) for the project and purpose!

+1
source

I got the same error in the build settings, fixed it below:

Architectures --Standard(armv7,armv7s) - $

Valid Architectures --i386 armv7s 
0
source

All Articles