Installing Maven in Windows/Linux

In this article we are going to see how to setup maven in PC. Primarily I will install maven in windows PC.What is maven? Maven is a tool for java application build management. Maven is targeted for- Making the build process easy- Providing a uniform build system- Providing quality project... [Read More]

PerfMon-JMeter Server Monitoring PlugIn

In this article we are going to see what are additional features/items added after installing jmeter plugin (Google Plugin) and what we can do with it. I will discuses about Listeners only. To know about basic of jmeter see my this page. And, the process to install plug in ,... [Read More]
Tags: jmeter

Android APK(No Source Code) Test in Robotium

In this article we are going to see how can we write unit tests with Robotium Framework when we do not have the source code. That means we are going to test an application using its installer apk file.Please read my previous post for robotium setup basic In this post... [Read More]

Setting up Robotium in Eclipse

In this article, we are going to see how to install Robotium In Eclipse.We will use robotium for android application testing using code base or stand alone apk. I will provide separate post for how to code. Let's make environment ready.Step 1. Install android SDK. See my this post. Step... [Read More]

Setting up Android SDK in Eclipse

In this article we are going to see how to set up android SDK with eclipse.We are doing this for mainly two purposes.1. When we try Robotium to for android unit testing, we need that2. When we do code review or android junit unit test case writingBeside that, for development... [Read More]
Tags: Android

How to search items in Robotium?

In this article we are going to see how to search a Button or a text at an Android device while performing Unit Testing using robotium framework.We need to initiate the Solo object. After initiation, we will uses solo to get those. For Buttons :  -To search a button with... [Read More]

How to validate items in Robotium?

In this article we are going to see how to validate different items at an Android device while performing Unit Testing using robotium framework. Basically we will check whether the item present or not. We need to initiate the Solo object. After initiation, we will uses solo to get those.Check... [Read More]

How to insert text / type in Robotium?

In this article we are going to see how to insert a text or data using at an Android device while performing Unit Testing using robotium framework. Android handles those keys like as soft key board.We need to initiate the Solo object. After initiation, we will uses solo to get... [Read More]

How to drag in Robotium?

In this article we are going to see how to Drag an Item in robotium. Android provides seperate event for dragging.We need to initiate the Solo object. After initiation, we will uses solo to get those.-To drag( Simulate touching) from a specified location to a new location.solo.drag(0, 240, 0, 400,... [Read More]

How to long press in Robotium?

In this article we are going to see how to click /press long. It is a spatial event like as clicking. Android provide separate event handler for long press. Ex- when we press on screen long time(3s+), the menu comes.We need to initiate the Solo object. After initiation, we will... [Read More]

How to scroll/ nevigate in Robotium?

In this article we are going to see how to scroll on the screen in robotium. Basically, this is nevigation over items. We need to initiate the Solo object. After initiation, we will uses solo to get those.-To scroll down to screen.solo.scrollDown();It returns false if not possible(end of screen)-To scroll... [Read More]

How to click an item in Robotium?

In this article we are going to see how to click different type of items using Robotium. We need to initiate the Solo object. After initiation, we will uses solo to get those. For List items:- To click a specific list line and returns an Array List of TextView objects.... [Read More]