In this article I am going to talk about a book on Jmeter recently 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...
[Read More]
Book Review on Performance Testing With JMeter2.9
Blog on Jmeter Book
[Read More]
How java, javac, javadoc work?
Blog on java Reflection
[Read More]
apt,Java Annotation Processor
Blog on java
[Read More]
idlj, idl-to-Java Compiler
Blog on java
[Read More]
jstatd, jstat daemon for remote Monitoring
Blog on Java
[Read More]
jps, JVM Process Status
Blog on Java
[Read More]
keytool,Java Certificate & Key Manager
Blog on Java
[Read More]
jstat, Monitoring JVM Statistics
Blog on Java
[Read More]
jconsole, Java Monitoring & Management Console
Blog on Java
[Read More]
jmap, Java Memory Map Printer
Blog on Java
[Read More]
jstack, Java Stack Trace
Blog on Java
[Read More]
jhat,Java Heap Analyzer
Blog on Java
[Read More]
jrunscript, Java CLI script shell
Blog on Java
[Read More]
jdb, The Java Debugger
Blog on Java
[Read More]
javaws ,Java Web Start
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 Commandline Options
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]
How to extract data from Email by Regular Expression
Moved
[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]
Tips-Tricks in Robbotium(Android Automation Framework)
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]
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]
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]