1
只要我們使用RemoteWebDriver在遠程機器上執行硒的webdriver測試打開瀏覽器編程之前,我們需要在遠程機器啓動硒服務器獨立-x.x.x.jar。到目前爲止,我做它用以下命令手動:啓動硒驅動程序服務器在遠程機器
java -jar selenium-server-standalone-x.x.x.jar
反正是有,我可以啓動遠程瀏覽器編程之前做到這一點。下面是我使用的驅動FF在遠程瀏覽器的代碼:
// Declare firefox capabilities
DesiredCapabilities capability = DesiredCapabilities.firefox();
// Create a remote web driver
WebDriver driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capabilities);
// Navigate to test site
driver.navigate().to("http://www.google.com");
在先進的感謝。
你是問,如果有一種方法可以編程方式從目前該機(集線器)開始在遠程機器(節點)的服務器? – ucsunil
這就是蘇尼爾 –