Tutorials

HIGHLIGHTED WORK

Featured Projects

  • How to Use Azure DevOps with Power BI & View Reports

    How to Use Azure DevOps with Power BI & View Reports

    You can connect Azure DevOps to Power BI using either: Below are step-by-step instructions. Method 1: Using Azure DevOps Analytics Views (Most Common & Easiest) If your Azure DevOps organization…

  • Azure DevOps Guide for Testers

    Azure DevOps Guide for Testers

    1. Introduction to Azure DevOps (ADO) Azure DevOps (ADO) is Microsoft’s cloud-based DevOps platform that supports the entire software development lifecycle. It provides tools for: For testers, Azure DevOps is…

  • How to install Docker to Raspberry Pi?

    How to install Docker to Raspberry Pi?

    Installation Step1 Update all our existing packages before we proceed to install Docker. We can upgrade all existing packages by running the following two commands on the Raspberry Pi. sudo…

LEARN AT YOUR PACE

All Tutorials

  • Test Patterns – Scenario Testing

    Scenario Testing Scenario testing is one of the example of Test Patterns Context The objective of scenario testing is to prove that the program will fail when asked to do real work ( significant tasks) by an experienced user. A failure at this level is a validation failure ( a failure to meet the stated…

  • How to convert xml to json format?

    To Convert XML to JSON format Consider a situation where in you have data in xml file and want to use it as a input to some other system where in it takes data in the form of JSON. You would require to convert XML to json format. Below is an example of converting XML…

  • Applying Patterns to Software Testing

    What is Patterns ? a regular or repetitive form, order or arrangement a model that is considered to be worthy of imitation Why Patterns ? Patterns are a way of helping people who design things. Patterns accomplish at least three things They provide vocabulary for problem solvers. They focus attention on the forces behind the…

  • Difference between __CSVRead and __Stringfromfile function

    Difference between __CSVRead and __Stringfromfile function

    __CSVRead() function The CSVRead function returns a string from a CSV file. When a filename is first encountered, the file is opened and read into an internal array. If a blank line is detected, this is treated as end of file – this allows trailing comments to be used. All subsequent references to the same…

  • How to uses SYSMON to Monitor Performance counter?

    Monitor performance counter using SYSMON The following example uses VBScript to add counters whose values are retrieved from the local computer, modifies some of the SYSMON properties that control how the monitor is displayed, and processes the OnCounterAdd event. The example uses the wildcard character (*) to add all instances of the process counter. Save…

  • How to Automate UI Testing using Instruments for iOS app

    Automate UI Testing using Instruments An instrument is a powerful tool that can be used to automate UI testing. Instruments can also be used to collect data about the performance and behavior of one or more processes on the system and track that data over time. Although most instruments are geared toward gathering trace data,…

  • Exploratory testing tips

    Exploratory testing can be a challenge.  How to know that you have covered entire application? What all areas need to be covered? I have listed down some exploratory testing tips. This checklist will help you in performing exploratory testing in a more structured way. 1. Test for data types 2. Browser dependent tests 3. Miscellenous