1

私は Spring Roo チュートリアルを進めていますが、この時点で行き詰まりました。

http://static.springsource.org/spring-roo/reference/html/beginning.html#beginning-step-7

これは Maven コマンド ライン出力です。

C:\pizza>mvn selenium:selenese
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building pizzashop 0.1.0.BUILD-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- selenium-maven-plugin:2.1:selenese (default-cli) @ pizzashop ---
log4j:WARN No appenders could be found for logger (org.openqa.selenium.server.SeleniumServer).
log4j:WARN Please initialize the log4j system properly.
14:53:20.476 INFO - Preparing Firefox profile...
14:53:23.026 INFO - Launching Firefox...

この時点で、私の FireFox 11 ブラウザーは起動しますが、URL が表示され、すべてがハングしているように見えます。

提案やアイデアは大歓迎です。

環境: OS Windows 7 JDK 1.6 Maven 3.0.3 Firefox 11 最新の spring roo をダウンロード

4

1 に答える 1

1

これは、pom.xml のセレン プラグイン構成です。注: すぐに使用できる (いわば) Roo は firefox 3.x を想定しています。Firefox 3.x をインストールするか、サポートされている別のブラウザーを使用するように構成を変更できます。例:

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>selenium-maven-plugin</artifactId>
            <version>2.1</version>
            <configuration>
            <browser>*safari</browser>
            <suite>src/main/webapp/selenium/test-suite.xhtml</suite>
            <results>${project.build.directory}/selenium.html</results>
            <startURL>http://localhost:4444/</startURL>
        </configuration>
            <dependencies>
                <dependency>
                    <groupId>org.seleniumhq.selenium</groupId>
                    <artifactId>selenium-server</artifactId>
                    <version>2.9.0</version>
                </dependency>
            </dependencies>
        </plugin>
于 2012-05-15T17:12:59.033 に答える