1

我正在尝试使用Arquillian Drone来驱动我的测试,但是,由于某种原因注释@Before、、和被完全忽略@After@BeforeClass@AfterClass

我是这个 Java/jUnit/Arquillian 环境的新手(一直在使用 Python),所以我可能在这里犯了一些愚蠢的错误。

import org.jboss.arquillian.drone.api.annotation.Drone;
import org.jboss.arquillian.junit.Arquillian;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;


import com.eyereturn.warlock.client.pages.login.LoginPage;

@RunWith(Arquillian.class)
public class TestDroneLogin {

    @Drone
    private WebDriver driver;

    @Before
    public void setup(){
        driver.navigate().to("http://google.com");
    }

    @Test
    public void testInput(){
        driver.findElement(By.cssSelector("input#gbqfq"));
    }
}

arquillian.xml:

<?xml version="1.0" encoding="UTF-8"?>
<arquillian xmlns="http://jboss.org/schema/arquillian"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
        http://jboss.org/schema/arquillian
        http://jboss.org/schema/arquillian/arquillian_1_0.xsd">

    <extension qualifier="webdriver">
        <property name="browserCapabilities">chrome</property>
    </extension>

</arquillian>

pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0"
                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.myproj</groupId>
    <artifactId>proj-integration-tests</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <name>Project Integration Tests</name>

    <properties>
        <maven.compiler.source>1.6</maven.compiler.source>
        <maven.compiler.target>1.6</maven.compiler.target>      
    </properties>

    <dependencies>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.1</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.31.0</version>
        </dependency>

        <!-- Arquillian Core dependencies -->
        <dependency>
            <groupId>org.jboss.arquillian</groupId>
            <artifactId>arquillian-bom</artifactId>
            <version>1.0.3.Final</version>
            <scope>compile</scope>
            <type>pom</type>
        </dependency>

        <!-- Arquillian Drone dependencies and Selenium dependencies -->
        <dependency>
          <groupId>org.jboss.arquillian.extension</groupId>
          <artifactId>arquillian-drone-bom</artifactId>
          <type>pom</type>
          <version>1.1.1.Final</version>
          <scope>compile</scope>
        </dependency>

        <!-- Arquillian Graphene Webdriver -->
        <dependency>
            <groupId>org.jboss.arquillian.graphene</groupId>
            <artifactId>graphene-webdriver</artifactId>
            <version>2.0.0.Alpha3</version>
            <type>pom</type>
            <scope>test</scope>
        </dependency>

        <!-- Arquillian JUnit Standalone -->
        <dependency>
            <groupId>org.jboss.arquillian.junit</groupId>
            <artifactId>arquillian-junit-standalone</artifactId>
            <version>1.0.3.Final</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
4

1 回答 1

5

看起来这是Arquillian Standalone版本的一个持续问题。

该错误在此处公开,但自 2012 年 8 月 14 日以来未受到任何关注

解决方法是使用“Arquillian JUnit Container”版本pom.xml而不是“Arquillian JUnit Standalone”:

    <!-- Arquillian JUnit Container -->
    <dependency>
        <groupId>org.jboss.arquillian.junit</groupId>
        <artifactId>arquillian-junit-container</artifactId>
        <version>1.0.3.Final</version>
        <scope>test</scope>
    </dependency>

这似乎对我有用。

注意:使用@BeforeClassDrone请注意此错误

于 2013-03-06T16:17:35.330 回答