51Testing软件测试论坛

标题: webdriver启动firefox加载自定义配置文件问题 [打印本页]

作者: 缘来是原来    时间: 2017-11-8 17:45
标题: webdriver启动firefox加载自定义配置文件问题
package testng;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;
import org.openqa.selenium.firefox.internal.ProfilesIni;

public class StartFirefox{
    public static void StartLocalFirefox(){
         System.out.println("start firefox browser...");
         System.setProperty("webdriver.firefox.bin",
                 "D:/Program Files/Mozilla Firefox/firefox.exe");
         ProfilesIni pi = new ProfilesIni();
         FirefoxProfile profile = pi.getProfile("default");
         WebDriver driver = new FirefoxDriver(profile);  //The constructor FirefoxDriver(FirefoxProfile) is undefined
         driver.get("http://www.baidu.com/");
         System.out.println("start firefox browser succeed...");   
    }
}

作者: fhhh_eyou    时间: 2017-11-8 17:45
1.ProfilesIni pi = new ProfilesIni();
2.WebDriver driver = new FirefoxDriver(profile);
作者: 缘来是原来    时间: 2017-11-9 15:03
fhhh_eyou 发表于 2017-11-9 13:56
1.ProfilesIni pi = new ProfilesIni();
2.WebDriver driver = new FirefoxDriver(profile);

请问下什么意思呢?
作者: 缘来是原来    时间: 2017-11-10 09:42
有大神给解释下的吗?
作者: fhhh_eyou    时间: 2017-11-13 19:43
定义错误!
作者: 缘来是原来    时间: 2017-11-14 16:03
fhhh_eyou 发表于 2017-11-13 19:43
定义错误!

刚学,请教下应该怎么写呢?




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2