从 Maven 运行 Selenium Grid 可能不是一个好主意。这取决于您将要做什么以及如何做。
通常,您将针对几个/许多不同的环境并行运行 Selenium 测试,这具有相当大的资源成本。当您从 Maven 启动进程时,它们在其主线程中运行(作为子线程),因此它们的资源仅限于 Maven 的配置。这取决于您的机器和配置,但是从 Maven 启动网格并在一台普通机器上并行运行一些 Selenium 测试(集线器和几个节点,每个节点有 5 个实例)可能会使 Maven 因缺乏而挂起的记忆。为避免这种情况,您可以调整配置,按顺序运行测试(不是并行,仅一个节点)等,但同样:这取决于您想要做什么以及如何做,也许您应该考虑运行您的其他方式硒测试。
不过,如果您只是想尝试 Selenium Grid 的工作原理,或者只是一些将要运行的特定测试,您可以maven-antrun-plugin
像这样使用和启动集线器和节点:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>pre-integration-test</phase> <!-- your Selenium tests should run in integration phase -->
<configuration>
<target>
<java classname="org.openqa.grid.selenium.GridLauncher"
classpathref="maven.test.classpath"
failonerror="true"
fork="false">
<arg line="-role hub"/>
</java>
<java classname="org.openqa.grid.selenium.GridLauncher"
classpathref="maven.test.classpath"
failonerror="true"
fork="false">
<arg line="-role node
-browser 'browserName=firefox,version=19.0,maxInstances=3'
-browser 'browserName=internet explorer 64bits,version=9.0,maxInstances=2'
-hub http://localhost:4444/grid/register
-port 5555
-timeout 40000"/>
</java>
<java classname="org.openqa.grid.selenium.GridLauncher"
classpathref="maven.test.classpath"
failonerror="true"
fork="false">
<arg line="-role node
-browser 'browserName=chrome,version=24.0.1312.56,maxInstances=3'
-browser 'browserName=internet explorer 64bits,version=9.0,maxInstances=2'
-hub http://localhost:4444/grid/register
-port 5556
-timeout 40000"/>
</java>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
你的 pom.xml 中应该有这个依赖:
<dependency>
<groupId>org.seleniumhq.selenium.server</groupId>
<artifactId>selenium-server-standalone</artifactId>
<version>2.30.0</version>
<scope>test</scope>
</dependency>