我正在使用 Selenium 构建一个关于自动化测试的项目,但我对这些代码行有一些问题:
String exePath = "Browser\\firefox5.0.1\\firefox.exe";
var firefoxProfile = new FirefoxProfile();
m_browser = new FirefoxDriver(new FirefoxBinary(exePath), firefoxProfile);
m_browser.Navigate().GoToUrl(url);
我无法使用这些代码设置 firefox url。但如果我改用 InternetExplorer,我可以设置 IE url。我不知道问题出在哪里
请帮助我。太感谢了!