2012-04-30 82 views
0

我正在使用幾周前在Firefox中創建的腳本。當我加載它時,Firefox會打開,但空白並且不會運行。Firefox不能運行並且空白

selenium = new DefaultSelenium("localhost", 
      4444, 
      "*firefox C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe", 
      "http://www.test.com/"); 
selenium.Start(); 

Firefox配置文件阻礙了嗎?它每次打開一個Firefox的新實例,但不會去測試網站。

回答

1

通過爲您的硒實例編寫"http://www.test.com/"您只需提供基本網址供您測試。要導航到您的測試網站,您應該使用selenium.open("/")命令。要導航到"http://www.test.com/test.html",您應該使用selenium.open("/test.html")等。

相關問題