-
Microsoft Dynamics NAV 2013 R2 Multitenancy deployment
Multi-tenancy is a software architecture in which a single instance of the application can be accessed by multiple customers. This is rather simple as a definition, so let us explain the concept of multi-tenancy. Single Tenancy Multi-Tenancy Microsoft Dynamics NAV and Multi-tenancy Earlier versions of Microsoft Dynamics NAV was known to us as a single tenant…
-
Creating an RDLC report in Asp.Net
Step 1. Create a new website and Add DataSet to the Website Right Click on the project, Add new item Dataset, and name it as Employees.xsd. Step 2. Adding DataTable to the DataSet Our next step would be to add a DataTable to the Type DataSet. Step 3. Adding Columns or fields to DataTable In…
-
Object Identification and Object Repositories in QTP
Object Identification QTP performs the operation only after identifying the object uniquely. In order to identify the object uniquely it uses property values of the respective object which will be stored in the Object Repository. Note: To view the property values of the object, QTP uses Object Spy. Object Spy is a tool available in…
-
Why automation testing is required and its advantages over manual testing process
What is Automation Testing? Making the manual testing process as an automatic is called Automating Testing, which includes the development and execution of test scripts to verify customer requirements using any automation tool. Automation testing is not a replacement to manual testing. The idea of test automation is to automate some parts of the software…
-
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…