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

Test Automation with STAF & Python - Tutorial part 1

Software automation testing is a technique which can automate repetitive task or perform additional testing that would be hectic or time consuming to do it manually. The result of testing compares the actual result with the expected result. This is required to achieve continuous delivery and continuous testing. The w…

Read more

Linux : How to change OS language via terminal ?

In this post , I will be talking about how to change language of Linux OS from Terminal . If you are not a frequent user of Linux and struggling to do so, then follow the below mentioned steps. We can change the OS language in two ways, both the steps are easy to do and takes less that a minute. 1. via UI Op…

Read more