Java Conditional and Loop Statements

Java Conditional and Loop Statements Java Flow Control i) Java Conditional Statements 2) Java Loop Statements ————————————————————– i) Java Conditional Statements > Conditional Statements are used to insert verification points and error handling. a) Two types of Conditional statements in Java 1) if statement 2) switch Statement ———————— b) Types of Conditions 1) Single Condition … Read more

Java for Selenium Interview Questions

Java for Selenium Interview Questions and Answers 1) Why we prefer Java for Selenium? • Selenium written in Java, it doesn’t mean that Java only more compatible with selenium, we can use other supported languages also. • Good support for Selenium with Java, You can get more help documents and implementations from Internet. • Majority … Read more

Selenium Quick Tutorial

I) Selenium Quick Tutorials Tutorial 1: Introduction to Selenium (What is Selenium?, History of the Selenium Project, Selenium’s Tool Suite, Selenium License, Platforms supported by Selenium, Selenium Environment Setup, and Advantages & Disadvantages of Selenium) ————————————————— Tutorial 2: Selenium Test Life Cycle (Phases of Software Test Process – Test Planning, Test Design, Test Execution and … Read more

Constructors in Java

Constructors in Java If an variable is declared inside the class outside the methods then such kind of variables are called “instance variables”.If an instance variable is declared and not initialised then it will automatically initialised with default value of that variable type.If we donot want the default value then we can initialised the instance … Read more