2012-10-09 67 views
0

我有用vb.net和selenium編寫的測試。我配置了硒網格所以我可以使用硒網格運行多個dll。使用以下內容不會讓會話運行。使用selenium grid使用firefox運行測試

using selenium.Setup("localhost", 4444, "*chrome C:\Program Files (x86)\Mozilla Firefox\firefox.exe", My.Settings.URL) 

It is throwing the following error (TestFixtureSetUp): 
SetUp : Selenium.SeleniumException : ERROR: Could not retrieve a new session 

我有3個可用的RC與Firefox,鉻和IEEXPlore環境。使用iexplore工作正常,它執行測試很好,但使用Firefox時,它不會檢索會話。請指導我在這裏做錯了什麼。

編輯1:使用硒 - 網格版本1.0.8

回答

0

通過使seleniumProtocol固定的與網格馬金RC工作的上述問題=硒參數以命令

java -jar selenium-server-standalone-2.25.0.jar -role rc -hubHost localhost -browser browserName=*firefox,maxInstances=3,platform=WINDOWS,seleniumProtocol=Selenium 

在試驗用以下

selenium.Setup("localhost", 4444, "*firefox", URL) 

希望這將幫助別人

相關問題