Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
jbrasileiro
Posts : 1
Join date : 2011-01-12

SeleniumRC + MAVEN Empty SeleniumRC + MAVEN

Wed Jan 12, 2011 11:34 pm
I'm trying to configure Maven (POM.xls) to start selenium-server.jar automatically. I already tried to use some pluggins like jetty-maven-plugin, selenium-maven-plugin and do so, to start at pre-integration phase.
I tried this one:
Code:

<build>
      <plugins>
          <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>dependency-maven-plugin</artifactId>
              <version>1.0</version>
              <executions>
                  <execution>
                      <id>Copy</id>
                      <phase>pre-integration-test</phase>
                      <goals>
                          <goal>copy</goal>
                      </goals>
                    <configuration>
                          <artifactItems>
                              <artifactItem>
                                  <groupId>org.openqa.selenium.server</groupId>
                                  <artifactId>selenium-server</artifactId>
                                  <version>1.0-20081010.060147</version>
                                  <type>jar</type>
                                  <outputDirectory>${project.build.directory}</outputDirectory>
                                  <destFileName>selenium-server.jar</destFileName>
                              </artifactItem>
                          </artifactItems>
                      </configuration>
                  </execution>
              </executions>
          </plugin>
          <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-antrun-plugin</artifactId>
              <version>1.6</version>
              <executions>
                  <execution>
                      <id>start-Selenium</id>
                      <phase>pre-integration-test</phase>
                      <goals>
                          <goal>run</goal>
                      </goals>
                      <configuration>
                        <tasks>
                            <echo taskname="selenium" message="---------------------------------------------------------"/>
                            <echo taskname="selenium" message=" Starting Selenium Remote Control                        "/>
                            <echo taskname="selenium" message=" Please make sure that FireFox executable is on the PATH "/>
                            <java jar="${project.build.directory}/selenium-server.jar" fork="yes" spawn="true"/>
                            <echo taskname="selenium" message="---------------------------------------------------------"/>
                        </tasks>
                    </configuration>
                  </execution>
                  <execution>
                      <id>stop-selenium</id>
                      <phase>post-integration-test</phase>
                        <configuration>
                            <tasks>
                                <echo taskname="selenium" message="---------------------------------------------------------"/>
                                <echo taskname="selenium" message=" Shutting down Selenium Remote Control                  "/>
                                <echo taskname="selenium" message=" DGF Errors during shutdown are expected                "/>
                                <get taskname="selenium"
                                    src="http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer"
                                    dest="result.txt" ignoreerrors="true"/>
                                <echo taskname="selenium" message="---------------------------------------------------------"/>
                            </tasks>
                          </configuration>
                      <goals>
                          <goal>run</goal>
                      </goals>
                  </execution>
              </executions>
          </plugin>
          <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>selenium-maven-plugin</artifactId>
              <version>1.1</version>
              <executions>
                  <execution>
                      <id>Start</id>
                      <phase>pre-integration-test</phase>
                      <goals>
                          <goal>start-server</goal>
                      </goals>
                  </execution>
              </executions>
          </plugin>
      </plugins>
  </build>
someone can help me??? I'll be very very grateful Shocked
Back to top
Permissions in this forum:
You cannot reply to topics in this forum