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 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 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. 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/* * 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
Follow Us