Issue Type: Bug Bug
Affects Versions: 2.3
Assignee: Unassigned
Components: selenese
Created: 01/Aug/12 4:47 AM
Description:

Following config works fine with *iexplore for the browser, but with *iexploreproxy the port attribute is being ignored.
the url of the started IE is http://localhost:8080/selenium-server/core/TestRunner.html...... but should be http://localhost:4444/selenium-server/core/TestRunner.html.......
It uses definitly the startURL Parameter. Changed this setting and the url in IE for the htmlrunner was also changed.
If I change the port number manually in the popped up IE to 4444, the selenium testsuite runs through.

<?xml version="1.0"?>
<project>
<modelVersion>4.0.0</modelVersion>

<groupId>com.foo</groupId>
<artifactId>integration-test</artifactId>
<version>v01-00-00-SNAPSHOT</version>
<name>Integration Test</name>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.foo</groupId>
<artifactId>foo-web</artifactId>
<version>v01-00-00-SNAPSHOT</version>
<type>war</type>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.2.2</version>
<configuration>
<wait>false</wait>
<skip>${maven.test.skip}</skip>
<container>
<containerId>tomcat7x</containerId>
<zipUrlInstaller>
<url>http://archive.apache.org/dist/tomcat/tomcat-7/v7.0.16/bin/apache-tomcat-7.0.16.zip</url>
<downloadDir>${project.build.directory}/downloads/</downloadDir>
<extractDir>${project.build.directory}/installation</extractDir>
</zipUrlInstaller>
<output>${project.build.directory}/tomcat7x.log</output>
<log>${project.build.directory}/cargo.log</log>
<dependencies>
</dependencies>
</container>
<configuration>
<home>${project.build.directory}/tomcat-7/container</home>
<properties>
<cargo.servlet.port>8080</cargo.servlet.port>
<cargo.tomcat.ajp.port>8008</cargo.tomcat.ajp.port>
<cargo.jvmargs></cargo.jvmargs>
</properties>
</configuration>
</configuration>

<executions>
<execution>
<id>start-container</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
<goal>deploy</goal>
</goals>
<configuration>
<deployer>
<deployables>
<deployable>
<groupId>com.foo</groupId>
<artifactId>foo-web</artifactId>
<type>war</type>
<pingURL>http://localhost:8080</pingURL>
<pingTimeout>180000</pingTimeout>
<properties>
<context>ROOT</context>
</properties>
</deployable>
</deployables>
</deployer>
</configuration>
</execution>
<execution>
<id>stop-container</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>selenium-maven-plugin</artifactId>
<executions>
<execution>
<id>selenese</id>
<phase>integration-test</phase>
<goals>
<goal>selenese</goal>
</goals>
</execution>
</executions>
<configuration>
<background>true</background>
<browser>*iexploreproxy</browser>
<port>4444</port>
<startURL>http://localhost:8080/</startURL>
<suite>src/integrationTestSuite.html</suite>
<logOutput>true</logOutput>
</configuration>
</plugin>
</plugins>
</build>

</project>

Environment: Windows 7, Tomcat 7.0.25, maven 3.0.x
Project: Maven 2.x Selenium Plugin
Priority: Major Major
Reporter: Dominik Dejmek
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to