What is Java? Java is a versatile programming language developed at Sun Microsystems by James Gosling. The project began in 1991, and by 1995, Java was officially released. Since then, it has become a popular language for various applications...
Read more
Get ready! In this session, we'll use IntelliJ as our Integrated Development Environment (IDE) to write and run our first Java program. We'll cover the basics, including downloading IntelliJ, setting a workspace, and creating a Java project to generate...
Read more
Java is a powerful and widely-used programming language, and one of the fundamental concepts you'll encounter as a beginner is "variables." Imagine variables as containers that hold different types of information, like numbers, words, or even...
Read more
Java provides a set of control flow statements that allow you to control the flow of your program. These statements help you make decisions, repeat tasks, and create flexible and dynamic programs. In this article, we'll explore the basics of Java control...
Read more
What is an Array? Think of an array as a collection of elements, like a row of boxes. Each box can hold a specific piece of information, and the entire row allows you to organize and manage multiple pieces of data together. In Java, you can use arrays to store multiple values of the same type under a single...
Read more
A collection is a framework that provides a set of interfaces and classes to store, manipulate, and organize groups of objects. Think of it as a versatile toolbox offering different types of containers to efficiently handle data. These containers help you perform various operations like adding, removing...
Read more
Exception handling is a crucial aspect of Java programming that allows developers to gracefully manage unexpected events in their code. In this article, we'll explore the basics of exception handling, including what exceptions are, how to handle them using try-catch blocks, different types of...
Read more
Object-Oriented Programming (OOP) is a programming paradigm that revolves around the concept of "objects." These objects are instances of classes, which act as blueprints for creating objects. The key principles of OOP include encapsulation, inheritance, and polymorphism. In Java...
Read more
HTML, or HyperText Markup Language, is the backbone of the World Wide Web. If you've ever wondered how websites are made, HTML is the key ingredient that makes it all possible. In this article, we'll take a journey into the world of HTML...
Read more
JavaScript, often abbreviated as JS, is a versatile and dynamic programming language that plays a crucial role in web development. While Java and JavaScript share a similar name, they are distinct languages with different purposes and features. As we...
Read more
In the world of software development and quality assurance (QA), two popular data interchange formats, XML (eXtensible Markup Language) and JSON (JavaScript Object Notation), play crucial roles. Understanding these formats is meaningful for QA...
Read more
In the realm of software testing and quality assurance automation (QA), having the right tools is crucial to ensure the reliability and efficiency of software products. Maven and TestNG are two such tools that play significant roles in the development...
Read more
In today's fast-paced world of software development, quality assurance (QA) automation has become an indispensable part of the process. With the need for rapid testing and deployment, manual testing alone can't keep up with the demands. This is where automation tools like Selenium come into play...
Read more
I am happy to share that in this guide, we'll walk you through the step-by-step process of running your first Selenium test automation in IntelliJ. To get started, we will set up our testing environment in IntelliJ. Enter my GitHub repository to download my suggested environment. It will skip some...
Read more
In order to use more advanced commands, we need beforehand to write our imports. Imports allow us to bring external libraries or built-in modules into our script, making additional functions and classes available. Below is a cheat sheet of essential imports for Selenium automation...
Read more
After understanding selenium better, we can learn new WebDriver commands to create more advanced projects. I want you to look at the cheat sheet and create your own automation, feel free to play with the commands. You can put WebDriver commands on @BeforeTest, @Test, and @AfterTest to craft...
Read more