Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Software Testing Articles
Found 309 articles
Differences between Interface and Integration Testing.
Testing is crucial in software delivery, as it validates quality and helps developers improve their product. Two important testing types are Integration Testing and Interface Testing. Integration testing verifies that multiple components work together correctly, while interface testing focuses on the communication channels (APIs, web services) between those components. Integration Testing Integration testing is performed after unit testing to verify that individual components work correctly when combined in an integrated environment. It tests the end-to-end functionality of all components working together. Integration testing can be done in several approaches − Big Bang (all at once), Top-Down, Bottom-Up, or ...
Read MoreDifference between Frontend Testing and Backend Testing
A web-based application is generally based on a three-tier architecture. The first layer is the presentation layer (front-end), the second is the business/application layer, and the third is the database layer (back-end). Testing can focus on either the front-end or back-end, each requiring different skills and approaches. Three-Tier Web Application Architecture Presentation UI / Front-end Frontend Testing → Business Logic Application Layer ...
Read MoreDifference between Use Case and Test Case
Use Cases and Test Cases are two important terms in software testing. A use case describes how a system should behave to perform a certain task under given conditions. A test case contains the actual test data, step-by-step instructions, and the expected result to verify that the system works correctly. Use Case A use case is a representation of actions that describes the behavior of a system when performing a particular task. It is written from the end user's perspective and focuses on what the system should do, not how it does it internally. Use cases are prepared ...
Read MoreGUI Testing Tutorial: User Interface (UI) Test Cases with Examples
What is a GUI? For a computer application, there are two sorts of interfaces. The Command Line Interface (CLI) is a program that allows you to write text and have the computer reply to it. The Graphical User Interface (GUI) is a method of interacting with a computer that uses graphics rather than words. The following are some of the graphical user interface components that may be used to interact with the application − Radio Button ...
Read MoreWhat is Operational Acceptance Testing (OAT)? Example Test Cases
Operational Acceptance Testing (OAT) or Operational Testing is non-functional testing conducted before releasing an application to the production stage. It comes after the user acceptance testing and before releasing the app in the market. The primary purpose of this testing is to check the operational readiness of application software.The whole process comprises of a series of tasks such as −Installation testingRobustness of the appData integrityCode analysisSecurity testingNetwork installationRecovery testingProcedure verifications like security, support, alerts, and stressThe Importance of Operational TestingRegardless of how much time and money you spend in testing software, it doesn't ensure 100 reliability, robustness, and error-free. Testing ...
Read MoreWhat is Negative Testing(Test cases with Example)?
Negative TestingNegative testing is a kind of software testing that examines the software program for unforeseen input data and situations. Unusual data or situations might range from incorrect data types to a powerful cybersecurity breach. The goal of negative testing is to keep software applications from malfunctioning as a result of negative inputs and to enhance quality and stability.We can only ensure that our technology works in regular situations by doing positive testing. To create an error-free system, we must guarantee that our system can manage unforeseen situations.You will learn the following in this tutorial −What is Negative Testing?Example of ...
Read MoreWhat is Regression Testing? (Definition, Test Cases, Examples)
What is Regression Testing and How Does it Work? Regression testing is a sort of testing that is used to ensure that a software update does not affect the product's current functioning. This is to guarantee that any new functionality, bug patches, or modifications to current features don't break the product. In order to validate the effect of the modification, previously performed test cases are re-executed. Regression Testing is a sort of Software Testing in which test cases are re-run to see whether the application's prior functionality is still functioning and if the new changes have caused any new defects. ...
Read MoreHow to click on a link in Selenium with python?
We can click on a link on page with the help of locators available in Selenium. Link text and partial link text are the locators generally used for clicking links. Both these locators work with the text available inside the anchor tags. Link Text: In Selenium a link text is used to hyperlinks on a web page, to create the hyperlinks on a webpage, we can use anchor tag followed by link Text. ...
Read MoreDifference between Load Testing and Stress Testing
Performance testing of a system should be done at regular intervals. This testing helps in knowing about bottlenecks and other issues in a system. The two most common types of testing are load testing and stress testing. In this article, we will discuss the difference between Load Testing and Stress Testing. What is Performance Testing? Performance testing is performed to know about the speed, reliability, scalability, and other attributes of a software system. The two most common types of testing are load testing and stress testing. Performance testing lets the professionals know about bottlenecks and performance issues in a test ...
Read MoreTyping Enter/Return key in Selenium.
We can type Enter/Return key in Selenium. We shall use the sendKeys method and pass Keys. ENTER as an argument to the method. Also, we can use pass Keys. RETURN as an argument to the sendKeys method for the same purpose.To use the Keys class, we have to incorporate import org.openqa.selenium.Keys to the code. Let us type Enter/Return after inputting text within the below edit box.Exampleimport org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.By; import org.openqa.selenium.Keys; public class TypeEnter{ public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe"); WebDriver driver = new ...
Read More