Overview of Mobile Test Automation Frameworks

I found a really nice overview about Open Source Mobile Testing Frameworks for Test Automation. The overview was created by Dominik Dary (eBay). In his table he showed how many test automation frameworks are currently available for Android or iOS testing. The complete blog post can be found here: http://www.dary.de/2012/03/open-source-mobile-test-automation-frameworks A big thank you to … Read more

How Netflix test on Android

I found a really nice blogpost on the netflix blog. They describe how they test their app on different Android devices using AndroidNativeDriver and Selenium. When Netflix decided to enter the Android ecosystem, we faced a daunting set of challenges: a) We wanted to release rapidly every 6-8 weeks, b) There were hundreds of Android … Read more

Useful Android Development/ Testing Tools powered by troido

This week I attended the Mobile Developer Conference in Hamburg/ Germany. In the talk from Miroslav Simudvarac (www.troido.de) he presented some really useful Android Development Tools. I really like the tools and I think they are really helpful for Android Developers or Quality Assurance Experts.

The first tool is the so called re-signer developed by Miroslav Simudvarac. If you want to test e.g. with Robotium against an existing APK file and you don’t have access to the source code, you need to resign the APK file with your own signature. In a previous post I explained why you have to change the signature and how to do this on a commandline. With the re-signer tool you are now able to resign APK files over a graphical user interface. All you need ist the re-sign.jar file and an installed Android SDK. The tool can be downloaded from here. Download the jar file and execute it with a double click or from commandline with java -jar re-sign.jar. The following user interface should show up.


To resign your APK file, just Drag & Drop the file in the window. If the resigning was successful a popup window will show up and give you the information about the starting activity and the package name of the APK file that you need for your Robotium Manifest.xml file. Thats it! Now you should be able to resign APK files even faster!

The second tool is the so called Cert-Checker.

Read more

Android Testing Service – Apkudo

If you develop your Android app(s) in a small team without a dedicated QA guy or in a one man show, you have to test the app on your own. Usually developers test the app in the Android simulator with different Android versions and at least on one real device. The fact that Android is available in hundreds of custom configurations on over 200 different devices makes testing a real challenge for small teams. To ensure that your app runs on every device, you would have to buy a lot of hardware and need a lot of space to store all the devices. This waste to much time and is also very expensive.

But this could change now!

Read more

iPhone test automation using KIF (Keep It Functional)

In my last posts I dealed a lot with Android and how to implement automated regression tests using tools like Robotium. This post describes how to implement automated tests using the tool KIF (Keep It Functional, http://corner.squareup.com/2011/07/ios-integration-testing.html). KIF is an open source test framework developed by the company square (https://squareup.com). It is an iOS integration test framework that allows you to implement test cases with objective C that can be executed currently only against the iPhone/ iPad simulator. The KIF tests are integrated to your workspace, there is no need for additional servers or services that must be started.

Read more