Robot Framework : How to install on your Windows OS? - part1

How 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

Docker : How to install docker on Ubuntu 24.04 Linux OS ?

How 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 more

Python 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 more

JSON with Python

JSON (JavaScript object notation) Its syntax is derived from JavaScript object notation syntax. JSON is a syntax for storing and exchanging data. Few important properties about JSON: a) Data is in name/value pairs or key/value pairs b) Data is separated by commas c) Curly braces hold objects d) Square brackets hold ar…

Read more

Quick shortcuts to open Microsoft Office Apps

Quick 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 more

Access JIRA API via bearer token using Python code

How 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 more

How to get the UDID (Unique Device Identifier) of an Android Device ?

How to find the UDID of an Android Device ? What is UDID : It stands for Unique Device Identifier. UDID is required during Android  application development or Android App automation to get the unique id of the  Android device. It is needed in cases when the user wants to track the unique device installations …

Read more

Selenium WebDriver : How to find the highlighted text on webpage.

/* * How to find the highlighed text on webpage. * Programming language : JAVA * Autoamtion Library : Selenium * * We can achieve this with the help of JavaScript window.getSelection().toString() function * */ import org.openqa.selenium.JavascriptExecutor ; import org.openqa.selenium.WebDriver ; import org.…

Read more