Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
Acceptance Testing
Acceptance Testing (UAT) :
This is the most important type of testing as it is conducted by the Quality Assurance Team who will indicate whether the application meets the intended specifications & satisfies the client requirements.
This is ...
How to Automate a Slider in Selenium?
Selenium is a very powerful, flexible open source automation testing tool for web applications. With the help of selenium we can automate Sliders. Sliders helps the user to select a value by dragging and dropping a handle.
The f...
User Review
Typically identifies problems with requirements defnition and uncover gaps between business stakeholder
expectations and the actual deliverables being produced.
UAT and Business Driven Testing can be executed in parallel.Specifically UAT is c...
How to automate a Flash Player in Selenium
The following should be used to automate a flash player:
WebDriver driver = new FirefoxDriver();
driver.navigate().to("http://www.youtube.com/watch?v=cwNmRCJAIXU");
FlashWebDriver flashObj = new FlashWebDriver(driver,"movie_player");
flas...
How to automate Drag and Drop functionality in Selenium webdriver
The following code should be used:
WebElement draggable = driver.findElement(By.xpath("//Give the xpath"));
WebElement droppable = driver.findElement(By.xpath("//Give the xpath"));
Actions action = new Actions(driver);
action.dragAndDrop(...
QA Analysis
Analysis is the key factor which drives in any planning.During the analysis, the analyst understands the following:
-Verify that each requirement is tagged in a manner that allows correlation of the tests for that requirement tself.(Establish T...
How to call a javascript function through android
If you are trying to load a web page inside android web view. Then a known java-script function of the page can be called through android in following way :-
webview.loadUrl ("javascript:methodName(\""+parameter1+"\",\""+parameter2+"\")");
...
Trick to apply Http connection timeout for post and get method in android?
While working with application that connects to a web service and sometime it wait too long if it can't get a connection. To avoid this too long waiting you can set connection timeout timing of the HTTP params as per you want.
If you want to d...
Mobile Application Testing- Importance & Challenges
Mobile Testing :
Mobile Devices everywhere in the market .Mobile devices have become the primary medium of
interaction for consumers as well as businesses worldwide, and mobile applications are driving these
interactions.In traditional mar...
Creating Multiple Columns in CSS3
CSS3 Provides Column Property to layout the content in form of columns like done in News Papers, Magazines and Books.
Column include multiple properties which are as follows.
column-count
column-gap
column-rule
.textBox{
width:...
7 Principles Of Testing
Testing shows presence of defects: Testing identifies the defects, Flows and errors present in the software but cannot prove that software is 100% defect free.
Exhaustive Testing is impossible: It is not possible to test every combination of i...
Getting weekends date in Java
To get weekend list for a current year, write the following code:
private ArrayList weekendList = null;
public void findWeekendsList()
{
weekendList = new ArrayList();
Calendar calendar = null;
calendar = Calendar.getInstance(...
Exploratory Testing
Exploratory Tests are categorized under Black box Tests that are aimed at testing in conditions when sufficient time is not available for testing or proper documentation is not available.
Exploratory testing is 'Testing while Exploring'.When ...
Web Content Security Checklist
The following checklist provides as overview as to what should be concentrated when choosing /designing a Web Content Security Policy.
-Support for flexible policies that allow you to configure the product for your current and future needs.
-...
CSS3 background properties in relation with Box Model
The CSS Box Model
In CSS, the term "box model" means considering all the HTML elements as boxes. It can be supposed as base of page layout. The CSS box model is essentially a box that wraps around HTML elements, and it consists of: margins, bo...
Wobble Effect by HTML 5 animation
<!DOCTYPE html>
<html>
<head>
<title>wobble effect</title>
<style>
body {
background-color: tomato;
}
.container {
position: absolute;
top: 40px;
left: 140px;
}
.slices {
position: a...
Content Management Testing Approach
Let us first understand the process of Content Management System.There are basically three different aspects of Content Management Systems:
1.Templating
2.Workflow
3.Versioning
Templating
Templating is the process of Layout Design.Initiall...
Benefits of Automated Testing
1.Fast
Automation tool runs tests significantly faster than human resources.
2.Reliable
Tests perform precisely the same operations each time they are run, thereby eliminating human error.
3.Programmable
We can program sophisticated test...
Web Designing Trends 2014
A lot of trends come and go in web design, and its important for designers and business owners to keep up with them in order to stay up-to-date and avoid having an outdated website.
The major trends which are being followed includes:
Res...
Translation module in drupal
If you have to add a multilingual feature in your drupal site then you can use 'Lingotek Translation' module. It provides machine translation as well as human translation for content type, fields labels, built-in terms, messages and for all keyw...
Enhancing HTML Content by Pseudo Elements
Pseudo Elements play important role while designing some web based stuff. With pseudo elements we can add content after or before any element in our web page.
Below is very simple demonstration.
<h1>Use of Before</h1>
<h2>U...
How to make iframe responsive
Hello reader !
How to make responsive iframe. We all are face this problem normally so there is an example and i hope it will helps you.
CSS :-
.wrapper {
width: 50%;
}
.container {
height: 0;
width: 100%;
paddin...
CSS 3 Filters
With CSS3, we can apply filters to our HTML elements in order to make them more interactive. There is no reqiurement of any designing software like photoshop anymore for making such effects.
Below are some filter examples:-
Blur:-
value from...
How To Create A Simple Animation With The Help Of Jquery
Simple Animations With The Help Of Jquery
You can slide elements or any content of HTML and even stop animations in mid-sequence. To slide elements up or down.
$("#Element").slideDown("fast", function() {
// For slide down
...
Polymorphism Java
Polymorphism in Java
OOP's a very important jargon in the programming world, and many of us are familiar with this word, Object oriented Programming. Polymorphism is a main pillar of OOP,s by definition it is the ability of an object to t...
CSS3 : Entrance Effects Examples
While applying animation to an object in MS Powerpoint, you might have picked some predefined entrance effects like bounce, flash, shake, wobble, etc.
We can apply these effects to our HTML elements in webpages as well. These can be implemente...
Animation in CSS3
CSS animations allows us to animate transitions from one CSS style to another. Animations consist of two components, a style describing the CSS animation and a set of keyframes that indicate the start and end states of the animation's style, as w...
Creating logo using SVG in HTML 5
Hell Readers,
If you want to create a logo using SVG in HTML 5, it's not a big deal, you can refer below simple example
<!doctype>
<html>
<head>
</head>
<body>
<?xml version="1.0" encoding="utf-8"?>
...
Creating logo using SVG in HTML 5
<!doctype>
<html>
<head>
</head>
<body>
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" id="Evon_Text" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y=...
css3 Animation
Hello readers !
In this blog i'll show how to use animation attribute in css3. By attribute you can
replace animated gif images, Flash animations, and JavaScripts also.
Okay lets start Its have two part :-
First we are describe the object...
How to show Distribution Bar Graphs in Android
From here you can be able to display the Bar Graphs through android applications. First of all you need to add achartengine-1.0.0.jar to your project . Which can be easily downloaded from here
Now you can use the following activity, in which...
Pagination in joomla
The JPagination class allows developers to reliably and consistently add pagination to the Front-end and Back-end display of their components. The file containing the class can be found at /libraries/joomla/html/pagination.php.
The construct f...
Maven build issue due to -jre or jdk
Error after running Maven install
Error: Unable to locate the Javac Compiler in:
C:\Program Files (x86)\Java\jre6..\lib\tools.jar
Please ensure you are using JDK 1.4 or above and
not a JRE (the com.sun.tools.javac.Main class is required)....
How to Update Ruby Version
Install ruby to C:\Ruby193 and set RUBY_HOME=C:\Ruby193and %RUBY_HOME%\bin added to PATH sys var.,
Go to http://rubyinstaller.org/downloads/
Download the devkit: DevKit-tdm-32-4.5.2-20111229-1559-sfx.exe
Extract Files by left double-click...
ACID property of database
Full form of ACID is Atomicity Consistency Isolation Durability . ACID is the concept that database professional follow while evaluating relational database and application architecture. For a reliable database all of the following attributes sho...
Check Email Already Exists with jQuery Ajax
While loginin website using email address many time you must have seen an error message say's Email already exists, So in this tutorial we will learn how to create a functionality in jQuerywhich checks if the email already exists and if yes t...
Indexes in MySQL
Indexes in MySQL can improve performance of specific queries Like as below Examples :
Syntax for creating index on one field:
CREATE INDEX indx_magrno ON EmplyeTable (EmplyeID);
These two indexes is supposed to hugely improve performan...
HTML5 Apps Goes Offline
Offline app capability in HTML5 bought all the power to store data offline .When we talks about offline people ask offline means without internet ? First take the term ONLINE . online and Web are kind of synonyms.
So why the term Offline is gett...
What Are The Use Of after() and before() Methods In JQuery
**Use Of after() and before() Methods In JQuery**
The jQuery after() method inserts content AFTER the selected HTML elements.
And
The jQuery before() method inserts content BEFORE the selected HTML elements.
**Example**
$("p").after("S...
How to add class or other attribute on first and last child of a element
How to add class or other attribute on first and last child of a element
here is ul have five li and i want to add class on first and last li
<ul id="parentElement">
<li>First</li>
<li>Second</li>
<li>...
WP_Query for post pagination
Here is the code to get your posts pagination. Here you give the number of posts which you want to print in the every page. Chang something according your custom post type or other.
// WP_Query arguments
$paged = (get_query_var('pag...
Exchangeable Image File (EXIF)
Exchangeable Image File abbreviated as (EXIF) is a format that is standard for storing information in digital photographs. Almost all new digital cameras, including the cameras on the mobile phones use the EXIF annotation. The EXIF stores an arra...
How to capture screenshot in selenium .
User can use the following code to capture screen shot using selenium Webdriver .
File Scrfile = Driver.GetScreenShot As(OutputType.File);
FileUtils.CopyFile(Scrfile,new File(c:\\capturescreenshot.jpg));
How to delete IE cookies in QTP.
Web application use cookies to store user related information . While testing web application
It is a best practice to delete cookies before starting a new test.
IE cookies can be deleted using WebUtil object which come along with QTP. We need...
What are Equivalence Class Partitioning & Boundary Value Analyses?
Boundary Value Analyses & Equivalence partitioning are both test case design techniques in black box testing.
Equivalence partitioning: In this method, the input data is divided into different three classes.
This method is used to reduce th...
Bug life cycle
Below are the state of any bug by which bug goes through during test life cycle.
1.NEW : Tester Found new bug in the application.
2.Assigned : Tester assign Bug to the developer.
3.Open : Developer is fixing the bug .
4.Fixed : Developer has...
How to create a Custom Button
How to create Custom Button in Android
In Android it is very easy to use buttons , eclipse Ide provides you with drag and drop functionality.But we can use different approach and create our own custom button.
create an android projec...
How to open an URL in Android's web browser using intent
Here is how we can open an URL in Android's web browser.
Just pass the URL in Intent like:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.evontech.com"));
startActivity(intent);
Also, do not forget to add the inte...
How to Create a Responsive newsletter ?
Hello Users,
In the today world you can crate a responsive newsletter with help fo simple CSS.
You just follow 3 steps:-
1:- No Fixed Width
Generally we create f wrapper for a frame with fixed width. In this we can not use any fixed ...
How to make like query in MongoDb
Below is the way you can make like query in MongoDb :
It can basically be achieved by using MongoRegex
$where=array();
if($param['searchfor']!=""){
$regexObj = new MongoRegex("/".$param['searchfor']."/ig");
...