I'm using Selenium to buid a project about automation testing but I have some problem with these lines of code :
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);
I can't set firefox url with these codes. But if I use InternetExplorer instead, I can set IE url. I don't know where the problem is
Plz help me. Thank you so much!