Arquillian Drone Extension 2.2.0 Released

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

The Arquillian team is proud to announce the 2.2.0 release of the Arquillian Drone Extension component!

Apart from several fixes this release brings two improvements:

Property for skipping creation of @Drone instances

We introduced a system property arquillian.drone.skip.creation. If you set the property to true then Drone skips the creation/injection of @Drone instances. This property is checked in a @Before phase, so you can modify the property during the test execution.

ChromeHeadless browser property

Since Chrome 59 it is possible to use headless mode. To do it in Drone, it was necessary to set chromeArguments to --headless:

<property name="browser">chrome</property>
<property name="chromeArguments">--headless</property>

This release simplifies the process by introducing a new browser property value: chromeHeadless. If you use the value as a browser property:

<property name="browser">chromeHeadless</property>

the arguments are automatically set, so the browser will be launched in the headless mode.

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.2.0 view tag
Release date 2017-06-13
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-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 2

Enhancement
  • ARQ-2122 - Add chromeHeadless browser option to use headless chromium easily
Feature Request
  • ARQ-2119 - Allow skipping creation of Drone instances

Thanks to the following list of contributors: Matous Jobanek, Hemani

Arquillian Drone Extension 2.1.2 Released

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

The Arquillian team is proud to announce the 2.1.2 release of the Arquillian Drone Extension component!

This release contains a very important fix for the automatic download feature – for cases when the geckodriver (firefox) is used.
GitHub provides a limited set of unauthorized requests (which is the way we get information about releases), and there were some corner-cases when it was quite easy to reach the limit.
This release provides improvements/fixes that should avoid such an exceedance also in these cases.

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.1.2 view tag
Release date 2017-05-25
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-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 1

Bug
  • ARQ-2114 - It is easy to reach the GH rate limit when firefox is used

Thanks to the following list of contributors: Matous Jobanek

Arquillian Drone Extension 2.1.1 Released

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

The Arquillian team is proud to announce the 2.1.1 release of the Arquillian Drone Extension component!

Apart from several component updates, bug fixes and improvements; this release provides also one new feature:

Fullscreen

If you want to open your browser in fullscreen mode, use any of the following strings: full, fullscreen and max as a value of the arquillian.xml property: dimensions
For more information about configuration possibilities, see the documentation

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.1.1 view tag
Release date 2017-05-11
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-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 2

Component Upgrade
Feature Request
  • ARQ-2112 - Don't check the latest release of PhantomJS as there won't be any newer

Thanks to the following list of contributors: Matous Jobanek

Arquillian Drone Extension 2.1.0 Released

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

The Arquillian team is proud to announce the 2.1.0 release of the Arquillian Drone Extension component!

The final release of Drone 2.1.0 is here!
As a part of this release, apart from several bug fixes, we bring you two significant changes:

Browser configuration is not case sensitive anymore

Now, it doesn’t matter if you use htmlUnit or htmlunit. For both cases, you get the same browser. This is applied for all browsers that are supported by Drone.

Support for configuration of WebClient options in HtmlUnitDriver

If you want to configure WebClient options in HtmlUnitDriver, then use the arquillian.xml property: htmlUnitWebClientOptions
The value of this property should be a semicolon separated list of webClientOptions. e.g.

<property name="htmlUnitWebClientOptions">
   timeout=10; throwExceptionOnScriptError=false; SSLClientProtocols=protocal1, protocal2
</property>

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.1.0 view tag
Release date 2017-04-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-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

Feature Request
  • ARQ-1836 - Support HtmlUnitDriver client options
  • ARQ-2022 - Support starting Browser window in Fullscreen
  • ARQ-2106 - Browser configuration shouldn't be case sensitive

Thanks to the following list of contributors: Matous Jobanek, Dipak Pawar, Bartosz Majsak, Krassimir Valev

Arquillian Drone Extension 2.1.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.1.0.Beta1 release of the Arquillian Drone Extension component!

In this first Beta release, we finally finished the automatic download feature of all binaries used in Drone. The reason is that the automatic download is now implemented also for PhantomJS binary which was the last one that hadn’t been covered.

Properties, directory names and support of latest versions

  • Property that intended to be used as a system property to define a path to a binary:
    phantomjs.binary.path
  • Property that is intended to be used as a property used in arquillian.xml file to define a path to a binary:
    phantomjsBinary
  • Is the resolution of the latest version supported? (if the latest version is resolved when no property is defined):
    YES
  • Arquillian.xml property to define version of the binary that should be downloaded/used:
    phantomjsBinaryVersion
  • Arquillian.xml property to define an URL the binary should be downloaded from:
    phantomjsBinaryUrl
  • Name of the sub-directory (withing $HOME/.arquillian/drone/) the binaries are cached in:
    phantomjs

For more information about the automatic download feature, read the documentation

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.1.0.Beta1 view tag
Release date 2017-03-31
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-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 1

Task
  • ARQ-1699 - PhantomJS resolution by Spacelift

Thanks to the following list of contributors: Bartosz Majsak, Matous Jobanek, Hemani