Selenium WebDriver Java Tutorials – Object In Java

What Is An Object In Java? If Interviewer ask you this question then your answer should be like this : Object Is an Instance of class. In other words we can say object Is bundle of related methods and variables. Every object has Its own states and behavior. Objects are generally used with constructors In … Read more

Java Tutorials For Selenium WebDriver – Static And Non Static Methods

Right now we are learning different components of methods in java software development language as described in THIS POST. You can read about use of different ACCESS MODIFIERS and RETURN TYPES of method If you are not aware about it. One another component of method Is It can be static or non static method. Static keyword with method … Read more

Return Type Of Method In Java – Tutorials For Selenium WebDriver

We have learnt METHOD IN JAVA software development language and different METHOD ACCESS MODIFIERS in my previous posts. Now let me introduce you with different return types of methods in java software development language. You can use two kind of return types with methods. 1. Void and 2. Any data types. Void means returning nothing and when … Read more

Access Modifiers In Java – Java Tutorials For Selenium WebDriver

Access modifiers are the keywords in java software development language by which we can set the level of access for class, methods, variables and constructors. There are 4 different access modifiers available in java software development language. Now let me try to describe you how can we use them to set the access for the methods and … Read more