我正在使用.NET Framework 3.5(Visual Studio 2012)和selenium-dotnet-2.35.0(Selenium WebDriver for .NET 3.5)
尝试加载基本测试时,我收到错误:
Access to the path 'C:\Users\[User]\AppData\Local\Temp\anonymous112638264.webdriver-profile' is denied
我尝试在管理员模式下启动Visual Studio以及添加到清单:
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
没有运气
我尝试的代码(仅遵循简单的教程)是:
FirefoxProfileManager profileMan = new FirefoxProfileManager();
FirefoxProfile fp = profileMan.GetProfile("SELENIUM"); //I've set up another FF profile
FirefoxDriver firefox = new FirefoxDriver(fp); //Triggers error
firefox.Navigate().GoToUrl("http://google.com");
大多数教程甚至都不深入,只使用:
FirefoxDriver firefox = new FirefoxDriver();
firefox.Navigate().GoToUrl("http://google.com"); //Triggers error
我无法通过谷歌搜索功能在线查找任何信息,任何建议都表示赞赏