Category: KIỂM THỬ PHẦN MỀM – SOFTWARE TESTING
-
How can tester give feedback on quality developer’s output?
Testers can provide feedback on developer quality by looking at the following: 1. Code quality: Testers can review the code written by the developer to identify any architectural, design, or coding issues. They can focus on factors such as code readability, re-usability, maintainability, and overall efficiency. 2. Bug density: Testers can evaluate how many bugs…
-
How to simulate GET method with 500 error?
To simulate a GET method with a 500 error in Postman, follow these steps: Note: You need to ensure that the server is set up to return a 500 error for the specific request you’re testing. If the server is not configured to return a 500 error, the test will not fail. You may need…
-
What is digit?
A digit is a single numeral used to represent any of the numbers from 0 to 9. It is also used to represent a character in a digital code or binary language, where each digit represents a binary value of either 0 or 1. Digits are essential building blocks for modern computing and digital communication,…
-
How to apply critical thinking in software testing?
Critical thinking is a vital skill for software testers as it helps them to evaluate and analyze information to identify potential issues and create effective strategies. Here are some ways to apply critical thinking in software testing: 1- Identifying requirements: Identify the stakeholders’ expectations and identify the requirements to ensure thorough testing. 2- Analyzing risks:…
-
What is SEO testing?
SEO testing refers to the process of testing different strategies and techniques to improve a website’s search engine ranking and visibility in search engine results pages (SERPs). The goal of SEO testing is to identify the most effective methods for optimizing a website’s content, structure, and design to improve its ranking on search engines like…
-
What is Software Quality Engineering?
Software Quality Engineering (SQE) is the process of ensuring that software products are developed according to the predefined quality standards and requirements. It involves the use of various processes, tools, and methodologies to monitor, test, and improve the quality of software products. The primary goal of SQE is to ensure that the software meets the…
-
How to get started in manual software testing?
Manual testing is a type of testing process which is done manually by a tester, without using any automated tools or scripts. Manual testing involves the testing of software manually to identify bugs and errors in the application. The process involves manual execution of test cases, analysis of results, and bug reporting. To perform manual…
-
How developer can do software testing?
Developers can do software testing in the following ways: Unit testing: It is a method of testing individual components of the software application to ensure that each unit works as expected. Integration testing: It involves testing how the different components of the software application work together. System testing: It involves testing the software application as…
-
What need to be checked in API response?
There are several things that need to be checked in an API response: HTTP status code: Check if the HTTP status code indicating the success or failure of the API call is correct. Response payload: Check the response payload to ensure that it contains the expected data. Response headers: Check the response headers for any…
-
What is Webhook?
A webhook is a way for an application to notify another application when a specific event occurs. It’s a way for two applications to communicate with each other in real-time. When the event happens, the application sends a message to a predefined URL (the webhook) with the relevant data. The receiving application can then use…