vaka ama bana bir istisna ana "parçacığı 'verir' org.openqa.selenium.WebDriverException: yeni oturumda yönlendirme hatası bulamıyor: {platformu = WINDOWS, browserName = FIREFOX, version = 3.6}"WebDriverException: Yeni oturumda yönlendirme hatası bulamıyor: {platformu = WINDOWS, browserName = FIREFOX, version = 3.6} Ben Selenyum Web sürücüsü için yeni yanısıra Izgara 2.</p> <p>Bir testi çalıştırmak için çalışıyorum
ben java -jar selenyum-server-bağımsız-2.29.0.jar-role hub komutunu kullanan bir düğüm ve hub başlattınız
java -jar selenium-server-standalone-2.29.0.jar -role node -hub% kılavuz kaydı%
Her iki komut da düzgün çalışıyor.
emin değilim ve ne zaman komut satırı -Browser browserName = firefox, version = 3.6, MaxInstances = 5, platformu = WINDOWS
(Izgara dan düğümleri yapılandırmak için çalıştı 2 resmi kullanmasının gerektiği durumlarda ? Bunun bir yardım çok takdir edilecektir, çünkü sayfa
bunu midir İşte
benim kodudur:.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");
}
}