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

The third and hopefully the last Alpha release of Drone 2.1.0 significantly improves the resolution of binaries from GitHub.

GitHub release caching

In the Drone 2.1.0.Alpha1 we introduced a new feature of automatic downloading for webdriver binaries which is really cool, but had one drawback. The Gecko driver is stored in GitHub so Drone has to send some request to get the latest version and to download the required binary. Unfortunately, GitHub has for unauthenticated requests a rate limit that allows us to make up to 60 requests per hour, which wasn’t hard to exceed (for example in CI servers).

In this release, we solved this problem using conditional requests so it should be impossible to run out of the number of limited requests now.

There is nothing that you would need to do to activate this feature, just update your Drone dependency and use your Drone tests as you did.

We hope that you’ll enjoy our new stuff and look forward to hearing your feedback.

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.Alpha3 view tag
Release date 2017-03-18
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

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

Arquillian Drone Extension 2.1.0.Alpha2 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.Alpha2 release of the Arquillian Drone Extension component!

The second Alpha release of Drone 2.1.0 brings:

  • Support for Edge browser
  • Support for Selenium Server arguments
  • Component upgrades
  • Bug fixes

Edge

After a long time, the Microsoft Edge Web Browser is supported by Drone. Big thanks to Tomas David as he is the hero who implemented and tested this feature.

To use Edge in you UI tests specify edge as a browser property in your arquillian.xml file:

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

In case of Edge, Drone provides also the automatic download feature – for more information see Drone documentation

Selenium Server command line arguments

In the last release announcement, we mentioned that the Selenium Server is automatically started when necessary. It wasn’t possible to specify any argument (except for port) that should be used when an instance is started.

In this release, we introduce parameter seleniumServerArgs which you can define in your arquillian.xml file to specify arguments that should be used.

For example, if you used these properties:

<property name="seleniumServerArgs">-debug true -role node -browserTimeout 1000</property>
<property name="browser">firefox</property>

then the command used for starting Selenium Server instance would look like:

java -Dwebdriver.gecko.driver=target/.../geckodriver
     -jar target/.../selenium-server-standalone-3.3.1.jar
     -port 4444 -debug true -role node -browserTimeout 1000

We hope that you’ll enjoy our new stuff and look forward to hearing your feedback.

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.Alpha2 view tag
Release date 2017-03-09
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 6

Component Upgrade
  • ARQ-2081 - Upgrade to Selenium 3.3.0
  • ARQ-2083 - Upgrade to arquillian-phantom-driver 1.2.1.1
Enhancement
  • ARQ-2074 - Check if binary is already executable before trying to chmod it regardless
Feature Request
  • ARQ-1890 - Support implementation of Microsoft WebDriver
  • ARQ-2060 - Support for Edge browser
Bug
  • ARQ-2080 - Improper closing of browsers configured via remote webdrivers

Thanks to the following list of contributors: Matous Jobanek, Hemani, Tomas David, Dipak Pawar

Graphene 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 Graphene component!

In this release, we bring you a bunch of component upgrades, bug fixes and improvements. For more information, check the release notes and resolved issues listed at the end of this announcement.

Java 8

As we upgraded to Selenium 3, we need to change the required minimal version of Java. From now on, you will need Java 8 to run your test with Arquillian Graphene.

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 Graphene
Version 2.2.0 view tag
Release date 2017-03-09
Released by Matous Jobanek
Compiled against

Published artifacts org.jboss.arquillian.graphene

  • org.jboss.arquillian.graphene » graphene-parent pom
  • org.jboss.arquillian.graphene » graphene-webdriver pom
  • org.jboss.arquillian.graphene » graphene-webdriver-spi jar javadoc pom
  • org.jboss.arquillian.graphene » graphene-webdriver-api jar javadoc pom
  • org.jboss.arquillian.graphene » graphene-webdriver-impl jar javadoc pom
  • org.jboss.arquillian.graphene » arquillian-browser-screenshooter jar javadoc pom

Release notes and resolved issues 4

Component Upgrade
  • ARQGRA-498 - Upgrade to Drone 2.1.0.Alpha2 (Selenium 3.3.0)
  • ARQGRA-499 - Update jboss-parent to 22 and fix checkstyle
Bug
  • ARQGRA-495 - Scheme and URL properties might be used in incompatible ways
  • ARQGRA-497 - Unable to start browser because FluentWait#until(Predicate) has been removed in selenium 3.2.0

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

Arquillian Reporter 0.0.2 Released

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

The Arquillian team is proud to announce the 0.0.2 release of the Arquillian Reporter 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 Reporter
Version 0.0.2 view tag
Release date 2017-03-09
Released by Matous Jobanek
Compiled against

Published artifacts org.arquillian.reporter

  • org.arquillian.reporter » arquillian-reporter-impl jar javadoc pom
  • org.arquillian.reporter » arquillian-reporter-api jar javadoc pom
  • org.arquillian.reporter » arquillian-core-reporter-api jar javadoc pom
  • org.arquillian.reporter » arquillian-core-reporter-impl jar javadoc pom
  • org.arquillian.reporter » arquillian-environment-reporter-api jar javadoc pom
  • org.arquillian.reporter » arquillian-environment-reporter-impl jar javadoc pom
  • org.arquillian.reporter » arquillian-reporter-depchain pom
  • org.arquillian.reporter » arquillian-reporter-bom pom

Thanks to the following list of contributors: Matous Jobanek, Dipak Pawar, Alex Soto

Arquillian Reporter 0.0.1 Released

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

The Arquillian team is proud to announce the 0.0.1 release of the Arquillian Reporter 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 Reporter
Version 0.0.1 view tag
Release date 2017-03-01
Released by Matous Jobanek
Compiled against

Published artifacts org.arquillian.reporter

  • org.arquillian.reporter » arquillian-reporter-impl jar javadoc pom
  • org.arquillian.reporter » arquillian-reporter-api jar javadoc pom
  • org.arquillian.reporter » arquillian-core-reporter-api jar javadoc pom
  • org.arquillian.reporter » arquillian-core-reporter-impl jar javadoc pom
  • org.arquillian.reporter » arquillian-environment-reporter-api jar javadoc pom
  • org.arquillian.reporter » arquillian-environment-reporter-impl jar javadoc pom
  • org.arquillian.reporter » arquillian-reporter-depchain pom
  • org.arquillian.reporter » arquillian-reporter-bom pom

Thanks to the following list of contributors: Matous Jobanek, Alex Soto