Skip to content
This repository has been archived by the owner on Nov 16, 2019. It is now read-only.

weissjeffm/webui-framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

webui-framework is Deprecated

No more pull requests will be accepted. If you absolutely must have webui-framework exactly as-is, you will need to fork it to make changes.

It was created at a time when remote git repos were very expensive to create, so we just threw everything into the only repo we had. It no longer makes any sense to keep all these unrelated components together. So we broke them apart into their own repositories.

And then there are some lower level libraries that the above libraries depend on, that you probably don't need to include directly. They should get pulled in automatically as dependencies.

How to consume these new libraries

You'll need a build tool that's based on maven, (or maven itself, but I don't recommend it). I recommend Gradle for any general purpose java (or other JVM) project. If your project uses Clojure at all, then I recommend Leiningen.

Finding the libraries in the repository

The libraries are stored in the Clojars repository, in the com.redhat.qe group. You can click on any of those to find the latest released build.

Setting up gradle

Add http://clojars.org/repo to the repositories section of your build.gradle file, as has been done below.

repositories {
    mavenCentral()
    [
        'https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads',
        'http://clojars.org/repo',
        'http://download.java.net/maven/2/',
        'http://repository.codehaus.org',
        'http://snapshots.repository.codehaus.org'
    ].each { repo ->  
        maven {
            url repo
        }
    }
}

Then add the libraries you need to the dependencies section.

dependencies {
    compile "com.redhat.qe:jul.test.records:1.0.1",
            "com.redhat.qe:assertions:1.0.2"
}

The format of specifying a dependency is slightly different between leiningen and gradle. Clojars shows the leiningen way, but here's how to translate:

  • Leiningen: [group/libname "version.x.y.z"]
  • Gradle: "group:libname:version.x.y.z"

About

A java library for running automated web UI tests using selenium and TestNG

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published