Arquillian Drone Extension 2.0.0.CR1 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 2.0.0.CR1 release of the Arquillian Drone Extension component!

In this release, there has been added support for two cloud-based browser/mobile automated testing solutions:

BrowserStack
Sauce Labs

Both implementations have been added as additional Arquillian Drone extensions. They are not included in the arquillian-drone-webdriver-depchain, so you need to explicitly specify the dependencies (but their versions are managed by Arquillian Drone Bom):

For BrowserStack

<dependency>
    <groupId>org.jboss.arquillian.extension</groupId>
    <artifactId>arquillian-drone-browserstack-extension</artifactId>
    <version>2.0.0.CR1</version>
</dependency>

For Sauce Labs

<dependency>
    <groupId>org.jboss.arquillian.extension</groupId>
    <artifactId>arquillian-drone-saucelabs-webdriver</artifactId>
    <version>2.0.0.CR1</version>
</dependency>

Both extensions behave as a standard WebDriver, so you can easily integrate them into your existing test suites. You just have to specify some necessary parameters there in your arquillian descriptor such as username, access.key and the combination of the testing platform and browser.
Both extensions supports also local testing and running appropriate binary when needed and required.
For more information see the BrowserStack README and SauceLabs README

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 2.0.0.CR1 view tag
Release date 2016-03-24
Released by Matous Jobanek
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-drone-bom 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-webdriver jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-saucelabs-extension jar javadoc pom
  • org.jboss.arquillian.extension » arquillian-drone-browserstack-extension jar javadoc pom

Release notes and resolved issues 3

Component Upgrade
  • ARQ-2024 - Update Selenium & phantom-driver & additional components to the latest versions
Feature Request
  • ARQ-2025 - Create BrowserStack extension
Task

Thanks to the following list of contributors: Matous Jobanek

Arquillian Drone Extension 2.0.0.Beta1 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 2.0.0.Beta1 release of the Arquillian Drone Extension component!

This release is (hopefully) the last step before the final release of the second generation of the Arquillian Drone extension.

Significant changes and additions

Support for Drone webdriver injection in @BeforeClass

Drones with a deployment scoped life cycle are now more tightly connected to the deployment – it’s creation has been postponed to the @AfterDeploy phase

Some SPI event have been merged/replaced

The following events:

  • BeforeDroneCallableCreated
  • AfterDroneConfigured
  • BeforeDroneConfigured
  • AfterDroneCallableCreated

are now merged into:

  • BeforeDronePrepared
  • AfterDronePrepared

They are called before/after both the Drone configuration and the Drone callable instance are prepared. This ensures that both or none of the objects should be present.

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 2.0.0.Beta1 view tag
Release date 2016-02-02
Released by Matous Jobanek
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-drone-bom 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-webdriver jar javadoc pom

Release notes and resolved issues 10

Component Upgrade
  • ARQ-1995 - Update to latest version of Selenium and Arquillian core
Feature Request
  • ARQ-1176 - automatically take screenshot and capture the html output on Assert failure or Exception
  • ARQ-1743 - Merge configuration and callable creation together
Bug
  • ARQ-1178 - Arquillian Drone Module page on arquillian.org is out of date
  • ARQ-1340 - Drone webdriver is not created during @BeforeClass
  • ARQ-2006 - ISE for deployment-scoped drone point when manual deployment is used
Task
  • ARQ-1692 - Factories should not bring runtime dependencies
  • ARQ-1696 - Update documentation to cover Drone 2.0.0
  • ARQ-1697 - Migration guide for users
  • ARQ-1698 - Migration guide for developers

Thanks to the following list of contributors: Matous Jobanek

Arquillian Drone Extension 2.0.0.Alpha5 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 2.0.0.Alpha5 release of the Arquillian Drone Extension component!

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 2.0.0.Alpha5 view tag
Release date 2015-08-04
Released by Matous Jobanek
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-drone-bom 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-webdriver jar javadoc pom

Release notes and resolved issues 6

Component Upgrade
  • ARQ-1962 - Update Drone to use 2.46.0 Selenium
Feature Request
  • ARQ-1775 - Allow to disable/enable nativeEvents via arquillian.xml
Bug
  • ARQ-1823 - ChromeBinary is not picked by ChromeDriver
  • ARQ-1874 - Allow Drone to skip session file creation
Task
  • ARQ-1639 - Enable UnusedImports in checkstyle rules
  • ARQ-1689 - Drop Android and iOS Drivers

Thanks to the following list of contributors: Matous Jobanek, Karel Piwko

Arquillian Drone Extension 2.0.0.Alpha4 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 2.0.0.Alpha4 release of the Arquillian Drone Extension component!

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 2.0.0.Alpha4 view tag
Release date 2015-03-02
Released by Karel Piwko
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-drone-bom 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-webdriver jar javadoc pom

Release notes and resolved issues 2

Component Upgrade
  • ARQ-1929 - Update Selenium to 2.45.0
  • ARQ-1930 - Update Arquillian Core to 1.1.7.Final

Thanks to the following list of contributors: Karel Piwko, Stefan Miklosovic, Aslak Knutsen

Arquillian Drone Extension 2.0.0.Alpha3 Released

Since we wrote this post we didn't laze around. Check our latest announcement.

The Arquillian team is proud to announce the 2.0.0.Alpha3 release of the Arquillian Drone Extension component!

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 2.0.0.Alpha3 view tag
Release date 2015-01-23
Released by Karel Piwko
Compiled against

Published artifacts org.jboss.arquillian.extension

  • org.jboss.arquillian.extension » arquillian-drone-bom 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-webdriver jar javadoc pom

Release notes and resolved issues 2

Bug
  • ARQ-1882 - NPE in ConfigurationMapper
  • ARQ-1888 - IE driver 2.43+ fails to start due to missing capabilities type mapping

Thanks to the following list of contributors: Karel Piwko, Tadeas Kriz, Stefan Miklosovic, Jiří Locker