MVN

com.dougnoel : sentinel

Maven & Gradle

Feb 28, 2020
8 stars

sentinel · A Selenium framework that implements the Page Object Model (POM) using Object Oriented Programming (OOP) concepts. It abstracts out most of the complexity of Selenium to allow users to focus on automating tests and not spend time dealing with the technical details of implementing an automation framework, so that automated tests can be written in a non-technical way in the same amount of time as manual tests can be executed.

<dependency>
    <groupId>com.dougnoel</groupId>
    <artifactId>sentinel</artifactId>
    <version>1.0.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.dougnoel : sentinel to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.3

All Versions

Choose a version of com.dougnoel : sentinel to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
sentinel-1.0.3

How to add a dependency to Maven

Add the following com.dougnoel : sentinel maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.dougnoel</groupId>
    <artifactId>sentinel</artifactId>
    <version>1.0.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.dougnoel : sentinel gradle dependency to your build.gradle file:

implementation 'com.dougnoel:sentinel:1.0.3'

Gradle Kotlin DSL: Add the following com.dougnoel : sentinel gradle kotlin dependency to your build.gradle.kts file:

implementation("com.dougnoel:sentinel:1.0.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.dougnoel : sentinel sbt scala dependency to your build.sbt file:

libraryDependencies += "com.dougnoel" % "sentinel" % "1.0.3"

Advertisement