Appium is an open source test automation tool for mobile applications. It allows you to test all the three types of mobile applications: native, hybrid and mobile web.
WebDriver is a tool for automating web application testing, and in particular to verify that they work as expected. It aims to provide a friendly API that’s easy to explore and understand, easier to use API.
Katalon Studio is a free and powerful open source automated testing tool for web testing, mobile testing and API testing. Katalon Studion is Built on top of Selenium and Appium.
Interviews are important because they offer a chance for companies and job applicants to learn if they might fit well together. Candidates generally go into interviews hoping to prove that they have the mindset and qualifications to perform the job in question.
Recent Blog Posts
How to Capture WebElement Screenshot in Selenium Webdriver using selenium 4
In this blog, we will learn how to capture webelement screenshot using selenium. Till Selenium 3 we have an option that to take the screenshot for an entire webpage. From selenium 4 onwards they have introduced an option that to capture a webelement. Previously, using some third party libraries like Ashot, shutterbug to capture the […]
How to SWAP Two Numbers in Java Without Temp variable or Without Third variable
In this blog, we will see How to SWAP Two Numbers in Java without Temp Variable or without third variable. This will be asked in the most of the interview questions. In the below snippet, we have done the following to swap two numbers without using temp variable: Create two int variables and assign them […]
How to SWAP Two Numbers in Java using Temp Variable
In this blog, we will see How to SWAP Two Numbers in Java using Temp Variable. This will be asked in the most of the interview questions. In the below snippet, we have done the following to swap two numbers using temp variable: Create two int variables and assign them with some values. Here we […]
How to Read Data From Properties File in Java
In this blog, we will see How to Read Data From Properties File in Java. This will be asked in the most of the interview questions. Things to Remember: Mostly, the properties file is used to maintain the configurable parameters of the project. Extension for this file is “.properties” Properties file data will be in […]
How to Compare Two Arrays in Java without built-in functions
In this blog, we will see how to compare two arrays in java without in-built functions. This will be asked in the most of the interview questions. In the below snippet, we have done the following: Created two arrays of same datatype and assigned those with some elements Created a helper class with parameters of […]
How to Compare Two Arrays in Java using built-in functions
In this blog, we will learn how to compare two arrays in Java using built-in functions. This will be asked in the most of the interviews. This can be implemented in the below way: In the below snippet, we have done the following: Created two arrays and assigned some elements in it. Using built-in function […]
How to Remove Whitespaces from a String in Java
In this blog, we will learn how to remove whitespaces from a string in Java. This will be asked in the most of the interviews. This can be implemented in three different ways listed below: Convert String into character array and use for loop For loop with charAt() method Using replaceAll() method Method 1: Convert […]
How to Perform Sum of the Digits in a Given Number in Java
In this blog, we will learn about how to sum of the digits in a given number in Java. This will be asked in the most of the interviews.This can be implemented using the below way: In the below snippet, we have done the following: Created the below variables of int type Number (assigned it […]
How to Reverse a String in Java
In this blog, we will learn how to reverse a string in Java. This will be asked in the most of the interviews. This can be implemented in four different ways listed below: Convert String into Character Array and use For loop For loop with CharAt() method Using StringBuffer class Using StringBuilder class Method 1: […]
Write Data in Excel Using Column Number in C#
Write data in excel using column number in C#, We will discuss about how to write data in excel using column number in C#. Usually we will use the excel sheet to maintain the test data. We might get doubt that why we need to put the test data/results in excel. If an application feed […]
Write Data in Excel Using Column Name in C#
Write Data in Excel Using Column Number in C#, We will discuss about how to write data in excel using column name in C#. Usually we will use the excel sheet to maintain the test data. We might get doubt that why we need to put the test data/results in excel. If an application feed […]
Get Data from Excel Using Column Name in C#
Get Data from excel using column name in c#, We will discuss about how to get data from excel using column name in C#. Usually we will use the excel sheet to maintain the test data. We might get doubt that why we need to put the test data/results in excel. If an application need […]