-
Coded UI automation for web applications using Record and Playback approach.
First, What is Coded UI? Coded UI (also called CUIT) is an automation testing tool provided by Microsoft technologies which helps in creating automated tests. The Coded UI tests help us verify the whole application such as User Interface and their functioning properties. Coded UI tests are more helpful when there are validations and logical…
-
Creating Simple App Using Ionic Framework
Introduction: Ionic framework is a simple, beautiful and structured Software Development Kit by using this we can create mobile apps. We can create both Android and iOS apps using ionic framework. You will find many docs and example for creating the apps using Ionic framework. Creating the Setup Environment: Follow the below steps to create…
-
ASP.NET: Audit Trail Implementation using Entity Framework
When you are working with certain projects which involves the Customer records, you might need to track of each and every addition/change made to system along with who create, modify and delete the records. Here I am going to show you how to implement the Audit Trail using Entity Framework in ASP.NET. Entity Framework keeps…
-
Create Restful service using Web API
What is Asp.Net Web API? Asp.Net Web API is a framework for building HTTP services that can be consumed by a broad range of clients including browsers, mobiles, iphone and tablets. It is very similar to ASP.NET MVC since it contains the MVC features such as routing, controllers, action results, filter, model binders, IOC container…
-
Locking VMs and Resources Groups with Azure Resource Manager using Azure PowerShell
Hello Folks! In this blog post we will be talking about locking down your Azure Resources with Azure Resource Manager. This tutorial might come handy to you when you want your resources to be safe from getting accidentally deleted. You can lock almost any type of resource using this method be it Virtual Machines, Web…
-
Handling Radio buttons and Checkboxes using Selenium Webdriver
The main difference between Radio button and Checkbox is that, using radio button we will be able to select only one option from the options available. whereas using checkbox, we can select multiple options. When we inspect a Radio button or a Checkbox, HTML code looks as below Using Click() method in Selenium we can…
-
Upcoming Webinar – Offshore support to North American Dynamics NAV partners
Offshore support to North American Dynamics NAV partners whose customers are moving to NAV ’16 While you may be busy selling new NAV installs, we can help offer the same features to your current NAV customers….. Do your NAV customers require integration with Mobile / Office /SharePoint / CRM/ BI and legacy applications? We are…
-
Microsoft Azure: Implementing Internet Facing Load Balancers using Azure Resource Manager
Howdy Folks! I was exploring Network Load Balancer in Azure Resource Manager and found out that you can also create an Internet Facing Load Balancer using Azure Portal. In this blog, I will show you How to create an External Load balancer using Azure Resource Manager. We will create two load balanced web-servers publically accessible through a common IP address. This IP…
-
Managing your text messaging with Manage My SMS
Have you ever been bothered by the bank notifications, payment reminders, lottery wins on your mobile phone and wondered whether there was any easy way you could take control? Or have you thought of safeguarding some of the key messages, may be, balance notifications from your bank, special messages from your special someone and other…
-
Page Object Model
Automation Testing with Selenium using Page Object Model Page Object Model (POM) Writing selenium scripts is not tough job. We have to find the elements and perform the operation on the webpage. Consider the below example of simple selenium script which will navigate to gmail website and identifies the email id field and enters the email…