📘 Introduction When working with REST APIs , understanding HTTP status codes is essential for debugging, testing, and building reliable applications. API error codes help clients and servers communicate the result of a request , whether it was successful, redirected, invalid, or failed due to server issues. This …
Read moreTesting a New Product: Essential Information Software Testers Must Gather in the AI Era
Learn what information software testers must gather before starting testing a new product, including AI, automation, compatibility, and release planning. In my years of experience in software testing, I’ve observed a recurring challenge— incomplete product information at the start of testing . This issue is more pr…
Read moreHow to initialize your brand new project to Git using command - git init ? Purpose: Start Git tracking in a project. What it does: ● Creates a .git folder inside your project ● Enables version control ● Does not upload anything online When to use: ● When starting a brand-new projec…
Read moreSteps to install GIT on your local system(Windows, Linux, Mac) Before installing Git to your machine, it's a good idea to check if it's already installed onto your machine by simply typing the below command. Open a command prompt (cmd on Windows) or terminal ( Linux / Mac ) Type a command $ sudo…
Read moreWhat is Git ?
Git stands for Global Information Tracker . It is an open-source tool developed by Linus Torvalds in 2005. It is a distributed version control system (DVCS) that allows multiple users to work on the same project simultaneously. It helps developers track code changes and maintain a history of modifications. Git …
Read moreFind if a given year is a Leap year or not ? In the Gregorian calendar, three conditions are used to identify leap years: The year can be evenly divided by 4, is a leap year, unless: The year can be evenly divided by 100, it is NOT a leap year, unless: The year is also evenly divisible by 400. Then it is a leap year. …
Read moreRobot Framework : Sample code to verify if Robot Framework is installed properly ? - part2
Sample code to verify if Robot Framework is installed properly ? 1. Create a file name test.robot and save it. *** Test Cases *** Sample Test Log Hello from Robot Framework! 2. Execute the script using below command. -> robot test.robot 3. Lets see this in details a) *** Test Cases *** # T…
Read moreHow to install Robot Framework on your Windows OS? Robot Framework is an open-source automation framework mainly used for: Test automation (acceptance testing, regression testing, system testing) Robotic Process Automation (RPA) It’s designed to be keyword-driven , meaning tests are written in a readable, almost n…
Read more
Social Icons