Arquillian Drone Extension 1.0.0.CR4 Released
Since we wrote this post we didn't laze around. Check our latest announcement.
The Arquillian team is proud to announce the 1.0.0.CR4 release of the Arquillian Drone Extension component!
Some of the highlights in this release
Upgraded underlying Selenium to 2.20.0
Simplified usage for Arquillian Drone with WebDriver and Selenium. We provide dependency chain artifacts which will grab all required dependencies. Use either one of them you need, both of them or even combined with Arquillian Graphene.
<dependencyManagement>
<dependencies>
<!-- clip -->
<dependency>
<groupId>org.jboss.arquillian.extension</groupId>
<artifactId>arquillian-drone-bom</artifactId>
<version>1.0.0.CR4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- clip -->
<!-- this is only dependency you need to add
in order to use Arquillian Drone with WebDriver in your project -->
<dependency>
<groupId>org.jboss.arquillian.extension</groupId>
<artifactId>arquillian-drone-webdriver-depchain</artifactId>
<version>1.0.0.CR4</version>
<type>pom</type>
<scope>test</scope>
</dependency>
<!-- clip -->
<!-- this is only dependency you need to add
in order to use Arquillian Drone with Selenium in your project -->
<dependency>
<groupId>org.jboss.arquillian.extension</groupId>
<artifactId>arquillian-drone-selenium-depchain</artifactId>
<version>1.0.0.CR4</version>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
What is Arquillian?
Arquillian is open source software that empowers you to test JVM-based applications more effectively. Created to defend the software galaxy from bugs, Arquillian brings your test to the runtime so you can focus on testing your application's behavior rather than managing the runtime. Using Arquillian, you can develop a comprehensive suite of tests from the convenience of your IDE and run them in any IDE, build tool or continuous integration environment.
Release details
Component | Arquillian Drone Extension |
---|---|
Version | 1.0.0.CR4 view tag |
Release date | 2012-03-27 |
Released by | Aslak Knutsen |
Compiled against |
|
Published artifacts org.jboss.arquillian.extension
- org.jboss.arquillian.extension » arquillian-drone-bom pom
- org.jboss.arquillian.extension » arquillian-drone-selenium-depchain pom
- org.jboss.arquillian.extension » arquillian-drone-webdriver-depchain pom
- org.jboss.arquillian.extension » arquillian-drone-api jar javadoc pom
- org.jboss.arquillian.extension » arquillian-drone-spi jar javadoc pom
- org.jboss.arquillian.extension » arquillian-drone-configuration jar javadoc pom
- org.jboss.arquillian.extension » arquillian-drone-impl jar javadoc pom
- org.jboss.arquillian.extension » arquillian-drone-selenium-server jar javadoc pom
- org.jboss.arquillian.extension » arquillian-drone-selenium jar javadoc pom
- org.jboss.arquillian.extension » arquillian-drone-webdriver jar javadoc pom
Release notes and resolved issues 5
- Component Upgrade
- Enhancement
-
- ARQ-821 - Provide a dependency chain to make usage of Drone with Selenium and WebDriver easier
Thanks to the following list of contributors: Karel Piwko, Aslak Knutsen