-
Prerequistes for installing TestNG Framework in eclipse IDE
TestNG Introduction TestNG is an open source automated testing framework, where NG of TestNG means NextGeneration. Cedric Beust is the creator of TestNG. It eliminates most of the limitations of the older framework and gives the developer the ability to write more flexible and powerful tests with help of easy annotations, grouping, sequencing & parameterizing. Prerequisites: Eclipse and…
-
How to Install TestNG framework (Step by Step installation process)
Steps to Install Eclipse using install new Software: Step 1: In Eclipse, on top menu bar, Under Help Menu, Click on “Install new Software” in help window. Step 2: Enter the URL (http://beust.com/eclipse/) at Work with field and click on “Add” button. Step 3: Once you click on “Add”, it will display the screen, enter…
-
Examples of Selenium Webdriver Scripts
Examples of Selenium Webdriver Scripts Now its time to code and execute the selenium webdriver scripts after installation of TestNG framework successfully. Example 1: Create a class as “Example” copy and paste the below mentioned code and right click on classname and mouse over on “Run As” option and click on “TestNG Test” option. Code:…
-
What is Selenium Webdriver
Automated software testing is a process in which software tools execute pre-scripted tests on a software application before it is released into production. The objective of automated testing is to simplify as much of the testing effort as possible with a minimum set of scripts. The main reasons for these added costs are primarily poor…
-
How to add Overlay in Windows phone 8
Windows Phone is windows mobile operating system from Microsoft. In my project, there was a requirement of Overlay panel whenever the data is requested from server (i.e., when task takes some time to execute). Here, I am going to show you a sample example of using overlay in windows phone project. Overlay, is it a…
-
Using Bootstrap Validation in Asp.net Applications
Bootstrap is a powerful mobile first front-end framework for faster and easier web development. It uses HTML, CSS and Javascript. Bootstrap is built on responsive 12-column grids, layouts and components. Whether you need a fixed grid or a responsive, Bootstrap’s responsive CSS adjusts to Desktops,Tablets and Mobiles. Advantages of Bootstrap: Since Bootstrap 3, the framework…
-
Importing & Exporting Data in Microsoft Dynamics NAV 2013R2
Since we all know In Microsoft Dynamics NAV 2013 R2, the support for the .fbk files was removed, but with Cumulative Update 8 for Microsoft Dynamics NAV 2013 R2, Microsoft has introduced Windows PowerShell cmdlets so you can export data from a Microsoft Dynamics NAV database and import it into another Microsoft Dynamics NAV database.…
-
How to build chat application using SIgnalR
Introduction Hello friends, This blog is related to a chat application which conatins the exchanging the words in between and also you can share the files.This is a live chat applcation which uses SignalR as a Dot net library for exchanging the data. Lets start the discussion in brief.I hope you will be able to…
-
Design Microsoft Dynamics Navision 2013R2 RDLC Report Part-2
In this post we will move to next step, and there we will go through two more data item grouping. For example: Here we will list Customer Ledger entries by Customer, then Customers by Salespersons. So we will get all customers for each salesperson and ledger entries for each customer that is done by using…
-
Automating .NET builds using CCNET and TFS
CruiseControl.NET (CCNET) is an open source tool used for continuous builds on server, where testing is required parallel to development. CCNET periodically checks the version control for changes to codebase, builds the source code if any modifications found, publish the build to website hosted location and notifies the build status software stakeholders. Here I am…