Agile, Scrum, Sprint

In my project, we used Scrum with two-week sprints.We started each sprint with planning, followed by daily stand-ups to track progress.At the end of the sprint, we had a review…

Difference between final and finally

The difference between final and finally in Java: final: Modifier used with classes, methods, and variables. For a class: Prevents the class from being subclassed (i.e., no inheritance). For a…

Page Object Model vs Page Factory

Page Object Model (POM) Page Object Model is a design pattern used in automated testing to manage web pages or application components. It facilitates creating objects that represent pages or…

Encapsulation

Encapsulation in Java is a fundamental object-oriented programming concept that involves bundling the data (fields) and methods (functions) that operate on the data into a single unit, called a class.…

About Java and Selenium and Locators

ClassDefinition/design/description of an object, includes name, fields, and methods.ObjectIt is an instance of a class, it contains data and methods.MethodDescribes the action performed on an object or using this object,…