我是 Selenium Web 驱动程序和 Grid 2 的新手。
我正在尝试运行一个测试用例,但它给了我一个例外
线程“主”org.openqa.selenium.WebDriverException 中的异常:转发新会话时出错,找不到:{platform=WINDOWS, browserName=FIREFOX, version=3.6}
我已经使用命令启动了一个节点和集线器
java -jar selenium-server-standalone-2.29.0.jar -role hub
java -jar selenium-server-standalone-2.29.0.jar -role node -hub %grid register%
这两个命令都可以正常工作。
我不确定何时何地需要使用命令行 -browser browserName=firefox,version=3.6,maxInstances=5,platform=WINDOWS
(尝试从Grid 2官方页面配置节点
是不是因为这个?
这是我的代码:
package test;
import java.net.URL;
import java.net.MalformedURLException;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;
import org.openqa.selenium.WebDriverBackedSelenium;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.RemoteWebDriver;
public class Test {
public static void main(String[] args) throws MalformedURLException {
DesiredCapabilities capability = DesiredCapabilities.firefox();
capability.setBrowserName("FIREFOX");
capability.setPlatform(org.openqa.selenium.Platform.WINDOWS);
capability.setVersion("3.6");
// capability.setCapability("");
WebDriver driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capability);
//WebDriver driver = new FirefoxDriver();
driver.get("http://www.google.com");
}
}