Pre-request Tools
To begin the automation process, specific software tools must be installed in your system. Below is the detailed list of these tools, along with their respective purposes and additional information:
Java (Version 17):
Purpose: The base language used in automation is Java.
Installation: Download Java 17 from the official Oracle website or opt for an open-source version like OpenJDK 17.
Verification: Verify the installation by typing
java -version
in the command prompt or terminal, ensuring the version is 17.
Maven:
Purpose: The project is built on Maven, a software project management and comprehension tool.
Installation: Download Maven from the official Apache Maven website and follow the installation instructions.
Additional Information: Update the settings file as per the organization’s shared document to configure Maven properly.
Verification: Confirm the Maven installation by typing
mvn -version
in the command prompt or terminal.
Git:
Purpose: Maven dependencies are provided through GitHub.
Installation: Download Git from the official website and follow the installation instructions.
Verification: Check the installed Git version by typing
git --version
in the command prompt or terminal.
IDE (Intellij IDEA Recommended):
Purpose: IntelliJ IDEA is recommended for its extensive support for plugins, CSV, and other Java-related functionalities.
Installation: Download IntelliJ IDEA from the official JetBrains website and install it following the provided steps.
Verification: Launch IntelliJ IDEA to ensure the installation is correct.
Steps to Install the Tools:
Java (Version 17):
Ensure to download version 17 suitable for your operating system.
Follow the installation prompts and set the
JAVA_HOME
environment variable.
Maven:
Download and extract the zip file to a directory on your computer.
Update the settings file as per the organization's shared document.
Add the
bin
directory to thePATH
environment variable and setM2_HOME
andMAVEN_HOME
.
Git:
Download and install Git following the guide.
IntelliJ IDEA:
Download and install IntelliJ IDEA.
After installing all the tools, ensure to verify each one to confirm they are correctly installed and configured. Your system is now equipped for initiating the automation process, with the specified configurations and settings aligned with organizational requirements.
Last updated
Was this helpful?