nicholas
nicholas

Reputation: 2762

Selenium Automation Organize Project

I would like to automate few applications. This application consist of web, mobile (Android + IOS) and API. How to organize this project for this situation. Im automation in selenium using Java. In C#, once can create a project consists of multiple sub projects. How to do it in Java?

Please advise.

A billion thanks for your help.

Upvotes: 4

Views: 318

Answers (2)

eHayik
eHayik

Reputation: 3262

It depends on which build automation tool you choose to work with.

When you work with C# you probably use MSBuild

In Java Stack the most popular build automation tools are maven and gradle and both support multi-module projects, It is up to you to choose which one suits your project requirements.

See

Gradle vs. Maven

Multi-Module Project with Maven

Introduction to Gradle

Maven Scopes and Gradle Configurations Explained

Upvotes: 6

Adriatic
Adriatic

Reputation: 1287

I am not 100% sure what your goal is, but when it's about setting up Selenium (JAVA) projects and run them automatically, I can recommend you to use Maven & Jenkins to achieve this goal. Find further information in the following link:

https://www.guru99.com/maven-jenkins-with-selenium-complete-tutorial.html

I hope I could help.

Upvotes: 3

Related Questions