Tag: Software Testing

  • Data driven testing in selenium webdriver using excel

    Data-driven testing (DDT) is taking a test, parameterizing it and then running that test with varying data. This allows you to run the same test case with many varying inputs, therefore increasing coverage from a single test. In addition to increasing test coverage, data driven testing allows the ability to build both positive and negative…

  • Load testing using Visual Studio – 2013

    Load testing using Visual Studio – 2013   To run load test, we first have to create web-performance test. Let us now look how to create web-performance test and how to perform load test on web-performance test. Tester should make sure that all regression tests are completed and system is stable before proceeding to load…

  • Selenium Locators

    Selenium webdriver uses locators to find the web elements on web page. The following are the list of locators used by selenium. 1. Locating an Web Element By ID: The most efficient way to locate an web element on a web page is By ID. IDs are the fastest locator and should always be the…

  • Introduction to Load Testing

    Well, before learning what is Load testing. Let us discuss briefly the performance testing. What is Performance Testing? Performance Testing of an application is basically the process of understanding how the application and its operating environment respond at various user load levels. The Response Time, Throughput and Utilization of the Processor would be measured while…

  • Identifying Web Elements using Selenium Webdriver

    What is Web Element? Anything present on the webpage is Web Element. Such as text box, button, link etc. Before performing any action in Selenium we should identify the Web Element using its characteristics given by the application developer with the help of HTML. What are the components of Web Element? While developing the Web…

  • How to handle the exceptions using recovery scenario manager in QTP?

    VB script Error Handling Durning run time, if QTP encounters any erorr then it will display the error message which haults the script execution. Inorder to overcome this we should suppress the error message and then we should take appropriate action to handle the error. This can be done using “On error Resume Next” and…

  • The Best Practices and Advantages of Designing Effective Test Cases

    The Best Practices and Advantages of Designing Effective Test Cases Overview Test case is a “Documentation specifying inputs, predicted results, and a set of execution conditions for a test item.”  The aim is to divide the software function into small units of function that is testable with input, and producing result that is measurable. So,…

  • 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…