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 moreHow to install docker on Ubuntu 24.04 Linux OS Installing Docker on Ubuntu 24.04 is a straightforward process. Here's a step-by-step walkthrough 🛠️ Step-by-Step Guide to Install Docker on Ubuntu 24.04 Update Your System sudo apt update && sudo apt upgrade Install Required Packages. These help your…
Read morePython Exception : ValueError
Python Exception : ValueError A ValueError in Python occurs when a function receives an argument of the right type but an inappropriate value. Lets see with an example: 🧪 Converting a string input to an integer num = int ( "Hello World !" ) 🔍 What happens? This will raise a ValueError because "He…
Read moreJSON (JavaScript object notation) Introduction In modern software development, data exchange between systems is extremely common. Whether you are building a web application, consuming an API, or storing configuration data, you will most likely work with JSON . In this guide, we will understand: What JSON is ? Why JSO…
Read moreQuick shortcuts to open Microsoft Office Apps Even with Microsoft's advanced app search feature, we frequently have a large number of programs on our system, making it difficult to find and launch them. Nevertheless, using shortcuts to open apps is often quicker and more convenient if we are aware of them. These …
Read moreHow to access the JIRA API via bearer token using Python code? JIRA is a project management tool that helps teams track bugs, releases, plan projects, etc. There are times when the team needs to access the release and bug data to create custom dashboards to show the trends, like bug trends and …
Read moreHow to find the UDID of an Android Device ? What is UDID: It stands for Unique Device Identifier . During Android app development or android automation, the UDID (Unique Device Identifier) is essential for identifying a specific Android device. It is particularly useful when tracking unique installations of an…
Read more
Social Icons