In this article I am going to talk about a book on JMeterrecently published from Packt Publisher. I was lucky to get an offer to review this book as a technical reviewer before publishing (you may find in the book). Today I am going to talk little more about the...
[Read More]
Book Review "Performance Testing With JMeter2.9"
Blog on JMeter
[Read More]
What are Java,JavaC, JavaDoc?
Blog on java Reflection
[Read More]
Java Annotation Processor,apt
Blog on java
[Read More]
IDL-to-Java Compiler, idlj
Blog on java
[Read More]
Java Remote Monitoring by jstatd
Blog on Java
[Read More]
JVM Process Status,jps
Blog on Java
[Read More]
Java Certificate & Key Manager,keytool
Blog on Java
[Read More]
JVM Statistics,jstat
Blog on Java
[Read More]
Monitoring & Management Console,jconsole
Blog on Java
[Read More]
Java Memory Map Printer,jmap
Blog on Java
[Read More]
Java Stack Trace,jstack
Blog on Java
[Read More]
Java Heap Analyzer, jhat
Blog on Java
[Read More]
Java Shell script,jrunscript
Blog on Java
[Read More]
Java Debugger, jdb
Blog on Java
[Read More]
Java Web Start(javaws)
Blog on Java
[Read More]
javac,The Java compiler
Blog on Java
[Read More]
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]
jar,The Java Archiving Tool
Blog on Java JAR
[Read More]
Java Javaw CLI Commands
Blog on java
[Read More]
Java Command Tools
Blog on Java Command Tools
[Read More]
Validate Link by Regular Expression
Blog on Regular Expression
[Read More]
Java Installation
Blog on Java
[Read More]
Java Exception Processing by Regular Expression
Blog on Regular Expression
[Read More]
Extract Email by Regular Expression
Blog on Regular Expression
[Read More]
Introduction to Regular Expression
Blog on Regular Expression
[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]
Robotium Tips-Tricks
In this article we are going to see some tecniques that can be applied in robotium to use it smartly. This is not a complete post, I will add more tips & tricks as the time goes. For basic ideas on robotium, please see my Mobile Testing section. Details ,...
[Read More]
Test case in Robotium without source code
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]
How to write test case in Robotium with source code
In this article we are going to see how can we write unit test case for a android application. We will discuses about a small demo example with detail explanation. The objective of the post is to have clear idea on how to get started with robotium uni test case...
[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]
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]
How to delete text in Robotium?
In this article we are going to see how can we clear text from a android item or a web element with robotium framework. After Initiating solo, we will mainly two type asserts-To clear text from current edit text item(in here myEditText)solo.clearEditText(myEditText); -To clear text from currently active edit...
[Read More]