My blog entries are my opinion and may not reflect my employer's opinion.
Tags
.Net 64-bit ActionScript AutomationFactory C# Captivate Channel 9 Data Binding DataGrid DCOM Exceptions Fiddler Flex FoneMonkey Free Online Training IIS Infragistics Installers iOS iPhone LinkedIn MonoTouch MS Project News Objective-C Office 2010 Out-of-Browser Outlook 2010 Project Server 2007 QlikView QlikView Extensions Sharepoint 2010 Silverlight Silverlight 4 Testing UIAutomation Unit Testing Visual Studio 2008 Visual Studio 2010 VMWare WCF RIA Services Windows 7 Windows Azure XamWebMenu Xcode 4Archives
- June 2011 (5)
- May 2011 (1)
- October 2010 (3)
- September 2010 (1)
- August 2010 (3)
- June 2010 (3)
- May 2010 (9)
- April 2010 (1)
- July 2009 (4)
- May 2009 (1)
- April 2009 (3)
- March 2009 (5)
- November 2008 (1)
RSS
Tag Archives: UIAutomation
iOS UI Automation: Adding Screen Capture Functionality to UIAElement
UIATarget has two screen capturing functions namely captureScreenWithName and captureRectWithName. The function captureScreenWithName allows you to capture the whole iPhone screen while the captureRectWithName allows you to capture a portion of the screen as specified in the first parameter which … Continue reading
iOS UI Automation: Typing A String in a UIATextField
When using UIATextField.setValue function to enter a value to a UIATextField, events like UIControlEventEditingChanged will not fire as expected. For it to fire, you need to enter the value using the keyboard. Here’s my code snippet to type the string … Continue reading
iOS UI Automation: Tapping the Clear Button in UITextField
Here’s a code snippet when you want to add a function “clear” that will tap the Clear button in a UITextField. this.hasKeyboardFocus() checks whether the current UIATextField object has the keyboard focus. If not, then you have to tap the … Continue reading
References on Unit Testing & UI Automation for iOS Applications
I found the following references helpful in my research on Unit Testing and UI Automation for iOS applications. There are a lot of tools to use to automate iOS testing and I’m very sure that I didn’t cover them all … Continue reading
How to Setup Logic Test Type of Unit Testing in Xcode 4
Apple documentation on Unit Testing Applications are about Xcode 3. I thought of posting a blog on how to do it in Xcode 4. 1. Add a new target. In Xcode, click on File | New | New Target. 2. … Continue reading
Solving “Duplicate Symbol” Error When Setting Up GorillaLogic’s FoneMonkey 5
I’m trying out GorillaLogic’s FoneMonkey 5 to see how it’s going to help us with automated testing for the iOS applications. Documentation on how to set it up is adequate but missed out on a scenario wherein a static library … Continue reading


