Author archives
Selenium Beginner 2 – History of Selenium

Notes: Today we will learn : 1. Birth of: Selenium Core Selenium RC WebDriver Selenium Grid Selenium IDE 2. How did Selenium 1, 2 and 3 came into existence 3. Selenium release history 4. Contributors and creators of Selenium 5. Why is Selenium named so ? 6. Useful tips Selenium 2.0 announcement : https://seleniumhq.wordpress.com/2011/07/08/selenium-2-0/ Creator …
Selenium Beginner 1 – Introduction – What is Selenium | Selenium Interview basics

Notes: Correction Note : Philippe Hanrigou is the primary creator of Selenium Grid and Patrick Lightbody is co-creator of Selenium RC. This is covered in next session – History of Selenium https://www.youtube.com/watch?v=c4y4m… Selenium Introduction – What is Selenium Today we will learn: 1. What is Selenium 2. Features of Selenium 3. 4 Components of Selenium …
How to install Maven on Mac OS Beginners Tutorial

Notes: Step 1 Check if Maven is already installed $ mvn –version Step 2 Download Maven from internet https://maven.apache.org/download.cgi Step 3 Unzip and place at some location on your system Step 4 Set System variables M2_HOME PATH Step 5 Check again if Maven is installed To Make Maven available for future sessions Step 6 Create …
How To Install Maven On Windows – Beginner Tutorial
How To Add Eclipse Project To GitHub | How to Commit, Push, Pull from Eclipse to GitHub
Java Beginner Tutorial 10 – How to create Classes and Objects

Notes: Today we will learn: 1. Convert information into tables 2. Create Class and variables using tables 3. Create Objects 4. Run the OO(Object Oriented) program Step 1 Represent Account Holder details in a simple table Step 2 Create a Java Class with name as TableName and Variables as column names Step 3 Create another …
Java Beginner Tutorial 9 – What is Object Oriented Programming (OOPs) with examples

Notes: Today We Will Learn: 1. What is Object Oriented Programming (OOP) 2. How did OOP came into existence – Non-Structured Programming – Structured Programming – OOP – Object Oriented Programming 3. Understand OOP with Real Life Examples We will understand: Examples of Object Oriented Programming Classes and Objects How can you relate OOP with …
Java Beginner Tutorial 8 – JDK JRE JVM

Notes: Today we will learn: Basics of JDK, JRE and JVM: JDK : Java Development Kit env to develop, compile and run java application JRE : Java Runtime Environment env to run java applications JVM : Java Virtual Machine interpreter to execute java programs (byte code) line by line JVM = executes precompiled java programs …