这个问题关于如何启动一个独立的Selenium服务器 - 目前看来我的junit测试将为我启动Selenium服务器,我希望单独这样做。
//使用junit的selenium测试脚本:
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服务器 - 我想自己单独启动它。
答案 0 :(得分:1)
从Selenium官方网站下载selenium-server-standalone.jar
。
然后,使用参数运行此jar
start java -jar "C:\my\path\to\file\selenium-server-standalone-3.7.1.jar" -role hub -port 4445
这将启动一个HUB,它接受您的测试并将其分发给节点。 节点是机器(可以与集线器相同),其中浏览器将实际开始其进程。
要创建节点,我们将使用完全相同的jar文件。
启动节点:
start java -Dwebdriver.chrome.driver="C:\path\to\chromedriver\chromedriver.exe" -jar "C:\path\to\selenium\jar\selenium-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(hub + nodes)时,您希望将测试分发给它。
如果没有Selenium Grid,测试总是在本地计算机上运行,浏览器由new ChromeDriver()
或new FirefoxDriver()
类创建。
有一个类针对提供的URL(hub的url)运行测试。它是RemoteWebDriver
。
如何使用示例:
WebDriver driver = new RemoteWebDriver(new URL("http://localhost:4445/wd/hub"), DesiredCapabilities.chrome());
现在,每个测试都将在您的自定义Selenium Server上运行。您可以使用它来针对10个或更多实例运行测试,具体取决于您的计算机。如果在同一个网络上,您甚至可以使用几台不同的计算机。