如何使用独立/集装箱式服务器运行Selenium测试
这个问题关于如何启动一个独立的Selenium服务器 - 目前看起来好像我的junit测试会为我启动Selenium服务器,而且我期望单独执行。
//使用junit的硒测试脚本:
package suman;
import java.util.concurrent.TimeUnit;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;
import org.openqa.selenium.*;
import org.openqa.selenium.interactions.*;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.remote.DesiredCapabilities;
public class SeleniumTest {
private static FirefoxDriver driver;
private WebElement element;
@BeforeClass
public static void openBrowser(){
System.setProperty("webdriver.gecko.driver", "/home/oleg/Desktop/geckodriver");
driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
}
@Test
public void valid_UserCredential(){
System.out.println("Starting test " + new Object(){}.getClass().getEnclosingMethod().getName());
driver.get("http://www.store.demoqa.com");
driver.findElement(By.xpath(".//*[@id='account']/a")).click();
driver.findElement(By.id("log")).sendKeys("testuser_3");
driver.findElement(By.id("pwd")).sendKeys("Test@123");
driver.findElement(By.id("login")).click();
try{
element = driver.findElement (By.xpath(".//*[@id='account_logout']/a"));
}catch (Exception e){
}
Assert.assertNotNull(element);
System.out.println("Ending test " + new Object(){}.getClass().getEnclosingMethod().getName());
}
@Test
public void inValid_UserCredential()
{
System.out.println("Starting test " + new Object(){}.getClass().getEnclosingMethod().getName());
driver.get("http://www.store.demoqa.com");
driver.findElement(By.xpath(".//*[@id='account']/a")).click();
driver.findElement(By.id("log")).sendKeys("testuser");
driver.findElement(By.id("pwd")).sendKeys("Test@123");
driver.findElement(By.id("login")).click();
try{
element = driver.findElement (By.xpath(".//*[@id='account_logout']/a"));
}catch (Exception e){
}
Assert.assertNotNull(element);
System.out.println("Ending test " + new Object(){}.getClass().getEnclosingMethod().getName());
}
@AfterClass
public static void closeBrowser(){
driver.quit();
}
}
// pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>suman</groupId>
<artifactId>suman</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>suman</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>3.9.1</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-firefox-driver</artifactId>
<version>3.9.1</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<version>3.9.1</version>
</dependency>
</dependencies>
</project>
当我运行时:
mvn clean test
它会在后台启动一台硒服务器,测试将使用该硒服务器。 我的问题是 - 如何配置我的项目,以便我的测试脚本使用外部/集装箱/独立Selenium服务器? 我不希望我的测试过程启动Selenium服务器 - 我想单独启动它。
从Selenium官方站点下载selenium-server-standalone.jar
。
然后,用参数start java -jar "C:mypathtofileselenium-server-standalone-3.7.1.jar" -role hub -port 4445
运行这个jar start java -jar "C:mypathtofileselenium-server-standalone-3.7.1.jar" -role hub -port 4445
这将启动一个HUB,它将接受您的测试并将其分发到节点。 节点是机器(可以与集线器相同),浏览器将在其中实际启动其进程。
要创建节点,我们将使用同一个jar文件。
启动一个节点: start java -Dwebdriver.chrome.driver="C:pathtochromedriverchromedriver.exe" -jar "C:pathtoseleniumjarselenium-server-standalone-3.7.1.jar" -role webdriver -browser "browserName=chrome,version=64.0,maxInstances=3" -hub http://localhost:4445/grid/register -port 5580
以上将允许您创建一个包含3个chrome实例的节点。 你当然可以使用任何其他浏览器。
当您最终设置您的Selenium Grid(集线器+节点)时,您想向其分发测试。
如果没有Selenium Grid,测试始终在本地计算机上运行,浏览器由new ChromeDriver()
或new FirefoxDriver()
类创建。
有一个类对所提供的URL(集线器的URL)运行测试。 它是RemoteWebDriver
。
如何使用示例: WebDriver driver = new RemoteWebDriver(new URL("http://localhost:4445/wd/hub"), DesiredCapabilities.chrome());
现在每个测试都将在您的自定义Selenium服务器上运行。 您可以使用它来针对10个或更多实例运行测试,具体取决于您的机器。 如果在同一网络上,您甚至可以使用几台不同的计算机。
链接地址: http://www.djcxy.com/p/50723.html上一篇: How to run Selenium tests with a standalone / containerized server
下一篇: How to know which Hudson version is used by my Jenkins server?