2012-04-10 93 views
1

我想通過指定的firefox配置文件像blow命令啓動Selenium服務器,但它不能正常工作(根據我指定的配置文件無法打開),有人可以告訴我是否有什麼問題我使用了命令?謝謝!Selenium服務器-firefoxProfileTemplate無法工作

ps:Windowns7平臺。

java -jar C:\ Users \ zhanjunw \ Desktop \ Selenium \ selenium-server-standalone-2.20.0.jar -interactive -singleWindow -trustAllSSLCertificates -firefoxProfileTemplate「C:\ Users \ zhanjunw \ AppData \ Local \ Mozilla \ Firefox \ Profiles \ r91p21kg.seleniumProfile「

+0

嘗試這樣做時發生了什麼錯誤? – 2012-04-10 20:55:16

+0

沒有任何錯誤,只是Firefox沒有啓動我指定的配置文件,而不是自定義的配置文件。我從appData \ ...更改配置文件夾到另一個,它的工作原理!似乎我們需要注意文件夾路徑。供您參考,謝謝您的關注! – swucim 2012-04-11 10:11:31

回答

0

firefoxProfileTemplate選項無效。 改爲使用webdriver.firefox.profile。你的命令應該是:

java -jar C:\Users\zhanjunw\Desktop\Selenium\selenium-server-standalone-2.20.0.jar -interactive -singleWindow -trustAllSSLCertificates -Dwebdriver.firefox.profile=seleniumProfile 

注: 選項webdriver.firefox.profile需要的個人資料命名的,而不是它的位置在文件系統中。 請參閱:http://code.google.com/p/selenium/wiki/FirefoxDriver

相關問題