2017-02-28 36 views
0

我創建了一個帶有相對路徑的jar(意思是我給了geckodriver裏面的資源並映射了它),但問題是Firefox啓動但url沒有加載。我需要它在運行多個操作系統的多個系統上運行。誰能幫忙?URL未加載Firefox(Selenium)

import com.relevantcodes.extentreports.ExtentReports; 
import com.relevantcodes.extentreports.ExtentTest; 
import com.relevantcodes.extentreports.LogStatus; 
import org.junit.Test; 
import org.openqa.selenium.firefox.FirefoxDriver; 
import org.openqa.selenium.firefox.FirefoxProfile; 
import org.testng.annotations.BeforeTest; 

import java.text.DateFormat; 
import java.text.SimpleDateFormat; 
import java.util.Date; 
import java.util.List; 


public class Maintest { 

    public static FirefoxDriver driver; 
    //public static ChromeDriver driver; 
    public static String downloadPath = "/home/user/Desktop/Downloads"; 
    private static ExtentReports reports; 


    @BeforeTest 

    public static void createDriver() { 
     System.setProperty("webdriver.firefox.marionette", "/home/user/Desktop/geckodriver"); 
     driver = new FirefoxDriver(FirefoxDriverProfile()); 
     driver.manage().window().maximize(); 
    } 

    public static FirefoxProfile FirefoxDriverProfile() { 
     FirefoxProfile profile = new FirefoxProfile(); 
     profile.setPreference("browser.download.folderList", 2); 
     profile.setPreference("browser.download.manager.showWhenStarting", false); 
     profile.setPreference("browser.download.dir", downloadPath); 
     profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/octet-stream"); 
     profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "text/csv, application/pdf,application/octet-stream"); 
     profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/pdf,application/x-pdf, application/pdf,application/vnd.fdf,application/vnd.ppdf, application/acrobat, applications/vnd.pdf, text/pdf, text/x-pdf, application/vnd.cups-pdf, application/foxit"); 
     profile.setPreference("browser.helperApps.neverAsk.openFile", 
       "text/csv,application/x-msexcel,application/excel,application/x-excel,application/vnd.ms-excel,image/png,image/jpeg,text/html,text/plain,application/msword,application/xml/application/pdf"); 
     profile.setPreference("browser.helperApps.neverAsk.saveToDisk", 
       "text/csv,application/x-msexcel,application/excel,application/x-excel,application/vnd.ms-excel,image/png,image/jpeg,text/html,text/plain,application/msword,application/xml/application/pdf"); 
     profile.setPreference("browser.helperApps.alwaysAsk.force", false); 
     profile.setPreference("pdfjs.disabled", true); 
     profile.setPreference("plugin.scan.Acrobat", "99.0"); 
     profile.setPreference("plugin.scan.plid.all", false); 
     profile.setPreference("plugin.disable_full_page_plugin_for_types", "application/pdf"); 
     profile.setPreference("browser.download.manager.alertOnEXEOpen", false); 
     profile.setPreference("browser.download.manager.focusWhenStarting", false); 
     profile.setPreference("browser.download.manager.useWindow", false); 
     profile.setPreference("browser.download.manager.showAlertOnComplete", false); 
     profile.setPreference("browser.download.manager.closeWhenDone", false); 
     return profile; 
    } 

    @Test 

    public static void bridge(List<String> selectedList) throws Exception { 
     createDriver(); 
     System.out.println("###############"+new Date()+"###############\n\n"); 
     DateFormat format = new SimpleDateFormat("dd-MM-yyyy"); 
     Date date = new Date(); 
     String dateTime = format.format(date); 
     reports = new ExtentReports("/home/user/Desktop/Regression Results-"+dateTime+".html", true); 
     driver.get("http://sitename"); 
+0

它與其他瀏覽器一起工作嗎? – balazs630

+0

nope。網址無法在任何瀏覽器加載 –

+0

請看看上面的代碼。它在我開發腳本的機器上工作,但不能在其他機器上使用Firefox 49及以上版本。使用jar文件來運行它。 –

回答

0

已知的問題是,當您使用geckodriver較低的版本出現,一個多補充檢查壁虎驅動程序是否與您的特定環境兼容與否。 您可以從https://github.com/mozilla/geckodriver/releases下載最新版本

+0

我正在使用最新的.. –

+0

你能提供更多關於你的環境的細節 – Abhishek

+0

intellij 16.3,gecko v0.14.0。能夠運行它直到FF 48版本。它的整個網站使用硒和Java自動化。 FF 49,50和51不能正常工作。我需要它運行在運行不同os和firefox版本的不同機器上。 –