You cannot post messages because only members can post, and you are not currently a member.
Description:
A mailing list for users and developers of Frank, an acceptance test automation framework for iOS. http://testingwithfrank.com
|
|
|
Delete all UITableViewCells
|
| |
Hey all, I am trying to write a step definition that will loop through all cells and swipe then touch delete them. However I ran into a situation where frank seems to be attempting to tap the hidden delete buttons. Does anyone else have experience in this regard? My definition is: Given /^There are no notes in the app$/ do... more »
|
|
Frank "type_into_keyboard()" function showing unexpected behaviour
|
| |
Hi, I am working on an application. Focus is auto set on different fields for function "type_into_keyboard()". Following is my code. *Code:* When /^I touch the text edit button$/ do touch "view:'UIView' view:'CaptureMediaToolbar' button marked:'camera text edit'" end Then /^I can see "([^\"]*)"$/ do |expected_mark|... more »
|
|
FEX_forcedTouch and app "isIgnoringInteractionEvents"
|
| |
First let me say thanks again to Ondrej whose *FEX_forcedTouch* is working well for me in most circumstances! The first check in the new *FEX_forcedTouch* method is: if ([[UIApplication sharedApplication] isIgnoringInteractionEvents]) { return NO; } The problem I'm having is that sometimes displaying a "fancy dialog or... more »
|
|
Testingwithfrank.com
|
| |
I've noticed over the past couple of days that the URL testingwithfrank.com has been unavailable with the following errors:
*Oops! Google Chrome could not find testingwithfrank.com*
*Try reloading: testingwithfrank.com*
Anyone else having this problem?
Jamie
|
|
"frank build" error when my xcodeproj has another project
|
| |
Hi Pete, My project has another project in it. In Xcode there is another xcodeproj file in my project. When I run "frank build" the build failes. The error message is something like this In file included from /path/to/file/SomeViewControll er.m:8:/path/to/file/SomeViewC ontroller.h:9:8: fatal error: 'MyView.h' file not found... more »
|
|
I can't build project app with Jenkins
|
| |
I want to run frank as part from Jenkins and I'm doing all from this article [link] When I call sh script from command line, it is all okey. But in Jenkins : rake aborted! xcodebuild failed (exited with status: 65)
|
|
drag_thumb_in_slider example
|
| |
Hi there, I just got started with Frank and I'm trying to automate some tests for my UISlider in my iOS app. Here's the frank method that I'm trying to execute: tap_and_hold_point("view:'UISl ider' marked:'settings-bet-view-slid er'", "15", "13") drag_thumb_in_slider_with_defa ult_duration("view:'UISlider'... more »
|
|
Interacting with UIAlertView via Frank
|
| |
I just read through the previous thread: Can't inspect the UIAlertView using frank-cucumber 1.1.0 and it seems that a fix was provided that helped people click a UIAlertView button, but I can't interact with the UIAlertView at all. In my situation, clicking on a "Restore" button in a regular dialog box... more »
|
|
Waiting for keyboard to appear
|
| |
Hi, very often I have to type something into a textfield/textview or another text component. My steps are the following: touch(text_field) sleep(0.75) tap_clear_button_if_exists type_into_keyboard(...) The problematic part is the sleep(0.75). I am not very happy to have random sleep times in my tests. Have somebody find a better way to handle this?... more »
|
|
|