Posts

i) Java Basics for Selenium ( Variable, Data Types & Objects )

Image
  Variable: A Java variable is a piece of memory that can contain a data value during java program execution. Variable Declaration: To declare a variable, you must specify the data type & give the variable a unique name. Ex., int a,b,c; float pi; double d; char a; Variable Initialization: To initialize a variable, you must assign it a valid value. Ex., int a=2,b=4,c=6; float pi=3.14f; double do=20.22d; char a=’v’; Types of variables In Java, there are three types of variables: Local Variables Instance Variables Static Variables 1) Local Variables Local Variables are a variable that are declared inside the body of a method. 2) Instance Variables Instance variables are defined without the STATIC keyword .They are defined Outside a method declaration. They are Object specific and are known as instance variables. 3) Static Variables Static variables are initialized only once, at the start of the program execution. These variables should be initialized first, before the initializat...

Download Java(JDK) & Eclipse IDE for selenium

Image
                                                                   Step 1: Install the java development kit (JDK) into your machine Download & Install JDK         -  How to check whether java is installed in your machine?                                Open command prompt or terminal based on your OS                               Type: Java -version & press Enter                                 It will show you the version of java if it is installed Step 2: Install Eclipse IDE ...

Glimpse of Software Tester in IT Industry

Image
Essentially, the job of a tester is to help provide its organization with meaningful information about the quality of the system under test in order to reduce risk, optimize performance, make sure it satisfies the requirements (it does what it was designed to do), and functions properly, among other things. Testers are naturally curious beings, always asking “What if” questions regarding a system… Cartoon Courtesy of Cartoon Tester They think outside of the box, anticipating actions that users may take that others in the organization may not be planning for. Basically, without software testers, there wouldn’t be someone dedicated to finding the issues within the software of a computer, machine, program, etc. that could cause it to not work properly. Thanks to QA engineers, you can Instagram your vacation photos, pay bills online, or call your family over a web application quickly and seamlessly.