TO THE NEW Blog PAGES

Manual TestingTechnologyTesting

Usability Testing: A Better User Experience

Nowadays new technologies have completely changed the way people do things. The Internet and various devices have made it possible to buy and sell products as well as services at any time and any location. Consequentially, a heavy number of e-commerce and other utility websites have appeared and continue to compete. Now, many of these […]

Technology

Introduction to Google Apps Script with Google Spreadsheet

What is Google Apps Script ? Google Apps Script is a JavaScript based scripting language that lets you add functionality to your Google Apps. It is a cloud-based language that integrates with all other Google services include Gmail, Google Drive, Calendar, Google Forms, Spreadsheets and more. We create and edit our scripts in an online […]

Technology

Getting to know the Console API for better debugging

Developer tools are powerful tools to debugging javascript file in development of front-end web applications. The console has an API that provides a number of methods that make debugging easier. There has a multiple method for debugging JavaScript files in web applications. Debug your web applications using the methods provided by the console API but […]

Automation TestingManual TestingTechnology

Top 11 Best Practices in Software Testing

“To err is human” – Alexander Pope. Everyone makes mistakes, but you cannot ignore all mistakes. Some of them can prove to be very expensive. During testing of an application/product, a tester makes sure that mistakes done by developers are discovered and fixed before the product reaches the end user. The primary objective of testing […]

AngularJSFront End DevelopmentTechnology

Comparison between Angular and Polymer

Angular :-  Angular is a robust application level js framework based on MVC pattern, facilitate you to extend HTML’s syntax to express application’s components clearly. Angular’s bi-directional data binding and dependency injection reduce code complexity and development time. Polymer :- Polymer is a lightweight js library used to build custom reusable HTML elements(components). It uses standard […]

Front End Development

Creating Automatic Numbering with CSS Counter

As you know, in front end development when we add lists to the <ol> element, a numbered list gets generated automatically. Similarly, we can generate numbers for any element using CSS Counter. Let’s see how it is done? Usage: CSS Counter has two main properties: “counter-reset” and “counter-increment”. The following code is an example of how we […]

Services