Test management using Microsoft Test Manager [Novice to Advanced] Basic Level Users: An overview on the basic usage of Microsoft Test manager can be achieved by following the Video links shared below, listed with 4 videos to give complete insights into the basic usage. Novice understanding of Microsoft Test Manager Advanced Level Users: Please follow the links below to understand how to Run tests with MTM & Visual Studio Web Portal 1. Testing your application using Microsoft Test Manager 2. Test on a lab environment Diagnostic Data Adapters: Changing how Developers and Testers work together The Test Impact Analysis using Test Impact Collector While you are testing your application, Microsoft Test Manager can collect data that will help diagnose any fault that you might find. If you create a bug report while you’re testing, the data is automatically attached to the bug work item. You can decide what kinds...
Java IO is an API that comes with Java which is targeted at reading and writing data (input and output). Most applications need to process some input and produce some output based on that input. For instance, read data from a file or over network, and write to a file or write a response back over the network. The Java IO package is primarily focused on input and output to files, network streams, internal memory buffers etc. However, the Java IO package does not contain classes to open network sockets which are necessary for network communication. For that purpose you need to use the Java Networking API. Once you have opened a socket (network connection) though, you read and write data to and from it via Java IO's InputStream and OutputStream classes. Basic Terminologies: Stream: A stream is a sequence of data. Streams in Java IO can be either byte based (reading and writing bytes) or character based (reading and writing characters). Java defines two types of strea...
Element Location Strategies using XPath, CSS & DOM Automating any application requires identification of the element & interact with it Locator are used for identifying the elements on the web page uniquely. There are so many ways to identify the elements in Selenium and those are called locators. Some of the most used and popular locators are XPath & CSS What is XPath? How do we use XPath in Elements identification? XPath (XML Path Language), is a query language for selecting nodes from an XML document. The XPath language is based on a tree representation of the XML document, and provides the ability to navigate around the tree, selecting nodes by a variety of criteria. XML contain one or more elements/tags/nodes An element may contain content/data or may contain other elements as child nodes. Each element should have starting tag and ending tag. The element content will reside in between these two tags. Apart from the content each tag may have ...
Comments
Post a Comment