Как настроить Selenium Server с помощью команды selenese из плагина Maven-Selenium? - PullRequest
0 голосов
/ 21 июня 2011

Я пытаюсь настроить сервер selenium, который используется командой selenese плагином Maven-Selenium из codehaus. Я пытался создать несколько исполнений в плагине, чтобы запустить сервер в фазе pre -gration-test , которая не работала. Селен-сервер просто зашел в бесконечный цикл, прослушивая порт.

Я хочу знать, есть ли способ переопределить / настроить selenium-server, который команда selenese использует в плагине. Пожалуйста, дайте мне знать.

См. Фрагмент кода POM ниже.

....
<properties>
    <selenium.version>2.0b3</selenium.version>
</properties>
<build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>selenium-maven-plugin</artifactId>
            <version>1.1</version>
            <dependencies>
                <dependency>
                    <groupId>org.seleniumhq.selenium</groupId>
                    <artifactId>selenium</artifactId>
                    <version>${selenium.version}</version>
                    <type>pom</type>
                    <exclusions>
                        <!-- prevent ant:ant versus org.apache.ant:ant collision -->
                        <exclusion>
                            <groupId>ant</groupId>
                            <artifactId>ant</artifactId>
                        </exclusion>
                    </exclusions>
                </dependency>
            </dependencies>
            <executions>
                <execution>
                    <id>Run-Script</id>
                    <phase>integration-test</phase>
                    <goals>
                        <goal>selenese</goal>
                    </goals>
                    <configuration>
                        <browser>*firefox</browser>
                        <suite>src/test/selenium/html/TestSuite.html</suite>
                        <startURL>http://localhost:4444/</startURL>
                        <results>${project.build.directory}/results/${browser.type}-${test.type}-results.html</results>
                        <port>4444</port>
                        <timeoutInSeconds>${selenium.server.timeout.seconds}</timeoutInSeconds>
                        <multiWindow>${multiple.windows}</multiWindow>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
....

Спасибо

Juan

1 Ответ

0 голосов
/ 01 июля 2011

Попробуйте установить startURL в качестве URL-адреса тестируемого приложения, а не указывать на URL-адрес сервера selenium rc.Например, если ваш тестовый тест на селен щелкает по ссылке в Google, установите startURL на http://www.google.com

Вот фрагмент из моего письма, который работает **

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>selenium-maven-plugin</artifactId>
        <configuration>
      <browser>*firefox</browser>
      <startURL>http://my-site.com</startURL>
      <suite>test-suite</suite>
      <!-- <logOutput>true</logOutput> -->
      <!-- <timeoutInSeconds>30</timeoutInSeconds> -->
        </configuration>
<executions>
  <execution>
    <id>test</id>
        <phase>test</phase>
        <goals>
      <goal>selenese</goal>
        </goals>
  </execution>
</executions>
  </plugin>

** Это работаетотлично, за исключением того, что в Mac OS Firefox просто остается открытым и не закрывается ?!Но надеюсь, это поможет.

...