MVN

com.salesforce.cqe : test-drop-in-framework

Maven & Gradle

Dec 28, 2021
9 stars

Test Drop-in Framework · Test Drop-in Framework for Selenium WebDriver 4.1.x This repository contains these major deliverables: a) the Test Drop-in Framework, b) a WebDriver implementation offering enhanced logging capabilities, and c) the @FindByJS annotation support Provides a thin abstraction layer between the test environment and the test class plus its helpers. This makes the test code independent of the test environment, thus allowing exchange of tests between organizations or even companies. It comes with an event firing WebDriver wrapper plus corresponding interface. This allows you to implement listeners to arbitrary WebDriver activities for various purposes such as logging. Offers support of JavaScript commands to find elements in a way similar to @FindBy used on fields in Page Object classes.

<dependency>
    <groupId>com.salesforce.cqe</groupId>
    <artifactId>test-drop-in-framework</artifactId>
    <version>4.1.2</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.salesforce.cqe : test-drop-in-framework to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 4.1.2

All Versions

Choose a version of com.salesforce.cqe : test-drop-in-framework to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
4.1.x
test-drop-in-framework-4.1.2
test-drop-in-framework-4.1.1
test-drop-in-framework-4.1.0
3.0.x
test-drop-in-framework-3.0.22
test-drop-in-framework-3.0.21
test-drop-in-framework-3.0.20
test-drop-in-framework-3.0.19
test-drop-in-framework-3.0.18
test-drop-in-framework-3.0.17
test-drop-in-framework-3.0.16
test-drop-in-framework-3.0.15
test-drop-in-framework-3.0.14
test-drop-in-framework-3.0.13
test-drop-in-framework-3.0.12
test-drop-in-framework-3.0.11
test-drop-in-framework-3.0.10
test-drop-in-framework-3.0.9
test-drop-in-framework-3.0.8
test-drop-in-framework-3.0.7
test-drop-in-framework-3.0.6
test-drop-in-framework-3.0.5
test-drop-in-framework-3.0.4
test-drop-in-framework-3.0.3

How to add a dependency to Maven

Add the following com.salesforce.cqe : test-drop-in-framework maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.salesforce.cqe</groupId>
    <artifactId>test-drop-in-framework</artifactId>
    <version>4.1.2</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.salesforce.cqe : test-drop-in-framework gradle dependency to your build.gradle file:

implementation 'com.salesforce.cqe:test-drop-in-framework:4.1.2'

Gradle Kotlin DSL: Add the following com.salesforce.cqe : test-drop-in-framework gradle kotlin dependency to your build.gradle.kts file:

implementation("com.salesforce.cqe:test-drop-in-framework:4.1.2")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.salesforce.cqe : test-drop-in-framework sbt scala dependency to your build.sbt file:

libraryDependencies += "com.salesforce.cqe" % "test-drop-in-framework" % "4.1.2"

Advertisement