2012-04-12 124 views
2

嗨我試圖在無頭服務器上運行一個簡單的硒測試。我想使用HtmlUnit,因爲服務器只有128 mb內存,所以xvfb+firefox是不合適的。使用htmlunit在無頭服務器上運行硒測試

當我運行:

java -jar selenium-server.jar -htmlSuite *webdriver http://example.com test.html log.html

我得到這個錯誤:

java.lang.RuntimeException: com.thoughtworks.selenium.SeleniumException: No webdriver session id given

我想這個問題是我沒有安裝htmlunit瀏覽器。不是嗎?

如何安裝htmlunit瀏覽器?

+0

安裝額外的軟件包取決於什麼操作系統和您所使用的分配上。請首先指定。 – Cougar 2012-04-12 10:50:20

回答

0

我認爲你的代碼有一些語法錯誤。我曾使用硒服務器運行無需webdriver html測試套件,並使用以下代碼: -

java -jar selenium-server.jar -htmlSuite「* browsername」「baseURL」「TestSuite名稱以及路徑」「要生成報告的路徑和名稱」

希望這將幫助你..

相關問題