Frank allows you to write structured text test/acceptance tests/requirements (using Cucumber) and have them execute against your iOS application.
Questions tagged [frank]
73 questions
2
votes
1 answer
Frank does not find any targets when running frank setup or frank build
I am trying to complete the frank tutorial given here: http://blog.thepete.net/blog/2012/06/24/writing-your-first-frank-test/
However when I reach to 'frank setup' (I have cd into the project directory)
Then I get the…

dynamokaj
- 471
- 7
- 19
2
votes
2 answers
Running a Frank cucumber scenario multiple times
I have 3 Frank/Cucumber scenarios, all related to logging in, on different environments: demo, preproduction, production.
I also have a separate Frank/Cucumber scenario that does the log out (which is always the same if the previous scenarios were…

Alex
- 7,432
- 20
- 75
- 118
2
votes
0 answers
How do I swipe a UIScrollView left or right using Frank?
I am starting to use frank-cucumber to test an iOS app. I have a paging UIScrollView and I want to test a swipe to the right and left. I would like to do something like this: Then swipe scrollview to the right or Then page once to the right. Is…

SirRupertIII
- 12,324
- 20
- 72
- 121
2
votes
4 answers
Problems when setting up Frank for iOS
I have a problem with setting up Frank in my iOS project.
I am following the instructions and executing in the console:
sudo gem install frank-cucumber -V
What I get is:
ERROR: Error installing frank-cucumber:
activesupport requires i18n…

Rafał Sroka
- 39,540
- 23
- 113
- 143
2
votes
2 answers
Automating frank from jenkins
I am trying to automate a test session from jenkins using Frank.
this is the error message I receive.
(Frank::Cucumber::FrankNetworkError)
./step_definitions/test_steps.rb:30:in `/^I navigate to button V\303\244der$/'
test.feature:41:in `When…

Jan
- 338
- 3
- 18
2
votes
1 answer
Frank Accessibility Enabled But Still Getting an Error
Frank was working until yesterday. I'm not sure what I did that screwed it up. In a project that I had Frank installed in and worked up until yesterday, I get a:
PING FAILED!!!!!...
Message now. So I created a new project and added Frank to test…

pachun
- 926
- 2
- 10
- 26
2
votes
1 answer
How do i pass a random string in ruby to an iOS app?
I am using Frank to automate the iPhone and so far so good. I am trying to create a random string for the user name and also concatenate the random string to an email the in the step definitions. I need to pass that to a text field element within an…

Laser Hawk
- 1,988
- 2
- 23
- 29
1
vote
1 answer
Frank (iOS acceptance testing framework) can't find Alamofire
I'm trying to set up Frank to test my iOS app. I've followed this tutorial but I get errors when I run frank build. The full output can be found here. The main error I get is:
CompileSwift normal i386…

Paymahn Moghadasian
- 9,301
- 13
- 56
- 94
1
vote
0 answers
How to script preserving application state in Frank?
I am trying to test an iOS application with Frank that uses application state preservation.
How can I get Frank to force the application to save its application state and restart the application loading its state?
BTW Restarting the simulator resets…

David Bernard
- 306
- 1
- 6
1
vote
1 answer
Frank Test : UIPickerView not Updating Value in Cell
So, I have the following Date Picker View :
This is connected to a Date of Birth Cell :
Now, in my Frank Test, I want to move the tumblers around and then reflect the final value in the Text Box. I do the following in order to do so :
dateValue…

gran_profaci
- 8,087
- 15
- 66
- 99
1
vote
2 answers
Cucumber not identifying steps definition
I have written a feature and a step definition. However, cucumber is not identifying the step definition.
my_first.feature
Feature:
As an iOS developer
I want to have a sample feature file
So I can see what my next step is in the wonderful…

prabodhprakash
- 3,825
- 24
- 48
1
vote
1 answer
how to handle the popups from frank-cucumber
I have this test case
Feature: Login to the app
Scenario: Successful login
Given ....................
When ....................
And A popup menu is displayed with the with the message "Please enter ......"
Then I press the…

Armando Rodriguez
- 29
- 3
- 9
1
vote
0 answers
Frank Cucumber failing for external libraries
In my xcode project, I have included two external libraries, DTCoreText and GMGridView. I also have my own created submodules in the project
When I execute. "frank build", I have observed that, the "build" folder is created for each submodules…

prabodhprakash
- 3,825
- 24
- 48
1
vote
3 answers
Cucumber - rerun failed tests in Jenkins
we are running a set of Frank/cucumber tests through a jenkins server to test an iOS app.
The tests run locally just fine, and also when run manually on the jenkins server. However, when going through jenkins, we get occasional errors causing the…

MichalT
- 13
- 1
- 3
1
vote
0 answers
Does parallel_test [cucumber] allows user to run iOS tests on multiple machines in parallel?
I have my Frank tests for iOS and they are using cucumber. Is it possible for me to use parallel test to distribute the .feature file to multiple machines using parallels and invoke the tests on multiple iOS simulators on different machine. If yes,…

Vijay
- 878
- 1
- 7
- 21