ROLES AND RESPONSIBILITIES

ROLES AND RESPONSIBILITIES ● Understanding and Analyzing the Application Under Test in terms of ObjectIdentification.● Creating Test scenarios and Collecting Test Data.● Identifying end to end scenarios and code modularity.● Implementing JUnit or TestNG Test Automation framework and developing automationinfrastructure.● Creating Keyword driven , Data driven and Hybrid driven Tests and Running throughframework.● Configuring Maven, … Read more

Categories FAQ

Java Variables

Variables are containers for storing data values. In Java, there are different types of variables, for example: 1) String – stores text, such as “Hello Techlearn“. String values are surrounded by Double Quotes.2) int – stores integers (whole numbers), without decimals, such as 12345 or -123453) float – stores floating point numbers, with decimals, such as 18.55 or -18.554) char – stores single characters, such as ‘a’ or ‘B‘. Char values are surrounded by Single Quotes5) boolean – … Read more

Naming convention in java with example

SNo. Name Convention Example 1. package name should be start with in lowercase letter  java, lang, sql, util etc 2. class name should start with uppercase letter and be a noun  String, System, Firefox, DataInput, Thread  3. interface name should start with uppercase letter and be an adjective Runnable, Remote, ActionListener 4. method name should be start with in lowercase letter, then from … Read more

Java Programs

Program to print alphabets:- package SeleniumLearn.com; public class PrintAlphabets{    public static void main(String[] args){                for(char i=’A’; i<=’Z’; i++){            System.out.print(i+” “);        }        }}  O/P:- A B C D E F G H I J K L M N O … Read more

Manual Testing Interview Questions and Answers

Most Asked Manual Testing Questions (2023-2024)1. What do you understand by software testing?2. When should you stop the testing process?3. What do verification and validation mean in software testing?4. What is static testing? When does it start and what does it cover?5. Define black-box testing.6. What is a test plan and what does it include?7. … Read more

API Testing

What is API Testing ?As we know API stands for Application Programming Interface which acts as an intermediate of communication between two applications. Due to this intermediary role of API (Application Programming Interface) two applications talk to each other and performs the required actions efficiently. API contains a set of rules and guidelines based on … Read more

Categories API