-
Microsoft VSTS Consulting
At a time when businesses are attempting to attain the highest possible degree of standardization and automation in software development, an integrated Application Lifecycle Management and software development toolset like Team Foundation Server holds the key to success. A proper commissioning of the Team Foundation Server (TFS) can work wonders for your development teams and…
-
Closure in Swift
A closure is a kind of anonymous(no name) function that gets stored as a variable so it can be called later on, and has the special ability to remember the state of your program when you used it.Closures are typically enclosed in curly braces { } and are defined by a function type () ->…
-
Excecution of your automation scripts just with a click
Implementing procedure: Step-1: Open your IDE (I am using here the Eclipse as an example.) Step-2: Click on the File (Left top corner) Step-3: Then click on the new, then java project Step-4: Then you will find a java project is created like this Create a class inside the src folder, like this project structure.…
-
Run your first Docker Application using VS 2017
-
VSTS Rollup Service
Hi All, if you are worrying how to calculate sum of the effort fields in VSTS, here is the solution. I’m going to explain you how our VSTS Rollup Service works. Here is the entire thing you need to know VSTS Rollup is a Web Service which provides summed values of select fields for all child…
-
Handling dropdown’s using Selenium Webdriver
Dropdown’s can be handled in Selenium webdriver using Select Class which has some predefined methods like selectByIndex(index), selectByValue(value), selectByVisibleText(text), getFirstSelectedOption(),getOptions() Select class can be found under org.openqa.selenium.support.ui.Select package Consider dropdown (Fig a) from a sample webpage. If we inspect the above dropdown refer fig (a) its html code will be as shown below In order…
-
Cross Browser issue, How to handle in Internet Explorer?
Cross Browser issue , How to handle in Internet Explorer? Now a days in online there are good number of browsers like Mozilla Firefox, Safari, Google Chrome, Internet Explorer etc. User of these browsers are also there. So one website has to be fixed all cross browser issues. Otherwise, one site may look correct in…
-
Brief Journey to Asp.Net MVC Framework
Introduction: ASP.NET MVC is a framework for building web applications that uses the model-view-controllerpattern. Like ASP.NET Web Forms, ASP.NET MVC is also built on top of the ASP.NET Framework. This means we can use same APIs like security, state management, membership, caching,ajax etc in MVC Applications. Every ASP.NET MVC application has three parts: a model,…
-
Converting UserControl into a dll
User controls are containers into which you can put markup and Web server controls. You can then treat the user control as a unit and reuse it in many other ASP.NET pages. But here I show you how to combine any number of UserControls into a dll and re-use across applications. Step1: Creating a UserControl…
-
ASP .Net MVC Error Logging Using Elmah
ASP .Net MVC Error Logging Using Google Elmah Introduction: ELMAH is one of the popular Library to logging unhandled errors provided by Google .It’s an application wide error logging facility which can be dynamically plugged. You don’t need to recompile the code. It’s pluggable. Below I will show you how to log your errors using…