UML Class Diagram
UML class diagram is a static diagram that shows classes and their relationships in the system. A class diagram is displayed as a rectangle with three components.
Automation
UML class diagram is a static diagram that shows classes and their relationships in the system. A class diagram is displayed as a rectangle with three components.
In this tutorial, we will learn different types of Locators in Selenium Webdriver. The locators are used to identify web page elements. The Selenium Webdriver
Reading Properties File In automation, the most common thing in almost all frameworks is to read and write configuration parameters from the properties file. In this post, we will learn steps to read properties file in Java. Let’s assume the file name “config.properties” and the class named “ConfigHelper” . Now we will see how to […]
What is JMeter? Apache JMeter is an open-source free software designed to load test behavior and measure the performance of the application. Also, it was designed for testing Web Applications but has since expanded its use-cases. Furthermore, it is a java application designed to test how much load your website can handle. What are the […]
Maven Dependencies, Plugins In this post, we will discuss Maven dependencies , plugins and repositories. Maven project might be dependent on other artifacts. These can be other libraries or even other projects. Maven will automatically discover all the dependencies either direct or transient. This is the most useful feature of Maven. Dependencies Dependencies are specified […]
Understanding Maven Repositories A repository is a directory where Maven build artifacts are stored. Different types of Maven repositories are as follows Local Repository Central Repository Remote Repository Local Repository It is your local folder in which artifacts and dependencies are stored on your computer. Maven automatically downloads the dependencies into the local repository. Default […]