OOPs is Object Oriented Programming.The great thing about OOPs is that is all about classes and objects which can easily correlated with real life scenarios. Class is the general thing and object is the specilisation of general thing For example if Human can be a class and linto ,raj etc ...
Test Base Class:Test Base class (TestBase.java) deals with all the common functions used by all the pages. This class is responsible for loading the configurations from properties files, Initializing the WebDriver, Implicit Waits, Extent Reports, and also to create the object of FileInputStream ...
if we create the object of subclass the it will implicitly or accordingly call the super class constructor.class A{ A(){}}class B extends A{ B(){}}public class C { public static void main(Strinng args[]){ B obj = new B();}}in the above code , when obj is created constructor ...
Inheritance class object Abstraction Name some pure object oriented languages small talk Java Eiffel Sather C++ is a partial object oriented programming language not pure. why it is not pure object oriented language. because C++, can write a program in c++ without using opps. Encapsulation It is ...