Skip to content

Instantly share code, notes, and snippets.

@lfryc
Created November 8, 2012 12:04
Show Gist options
  • Select an option

  • Save lfryc/4038396 to your computer and use it in GitHub Desktop.

Select an option

Save lfryc/4038396 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!--
JBoss, Home of Professional Open Source
Copyright 2012, Red Hat Middleware LLC, and individual contributors
by the @authors tag. See the copyright.txt in the distribution for a
full listing of individual contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://jboss.org/schema/arquillian"
xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
<defaultProtocol type="Servlet 3.0" />
<engine>
<property name="deploymentExportPath">target/</property>
</engine>
<container qualifier="jboss" default="true">
<configuration>
<property name="jbossHome">${jbossHome}</property>
</configuration>
</container>
<extension qualifier="webdriver">
<property name="useJavaScript">true</property>
<property name="browserCapabilities">${arquillian.drone.browser}</property>
<property name="remoteReusable">${arquillian.drone.reusable}</property>
<property name="remoteAddress">http://localhost:4444/wd/hub/</property>
<property name="chromeDriverBinary">/opt/google/chrome/chromedriver</property>
</extension>
</arquillian>
<systemPropertyVariables>
<arquillian.drone.browser>${arquillian.drone.browser}</arquillian.drone.browser>
<arquillian.drone.reusable>${arquillian.drone.reusable}</arquillian.drone.reusable>
</systemPropertyVariables>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment