new InternetExplorerDriver();
를 사용하여 셀레늄 WebDriver와 InternetExplorerDriver를 인스턴스화 그러나 나는 다음과 같이 예외를 볼 수있는 방법 : 예외가, 당신도 32 또는 64 비트 IE에 따라 당신이 IEDriverServer를 다운로드 할 필요가 말했듯이C#을
OpenQA.Selenium.DriverServiceNotFoundException was unhandled by user code
HResult=-2146233088
Message=The IEDriverServer.exe file does not exist in the current directory or in a directory on the PATH environment variable. The driver can be downloaded at http://code.google.com/p/selenium/downloads/list.
Source=WebDriver
StackTrace:
at OpenQA.Selenium.DriverService.FindDriverServiceExecutable(String executableName, Uri downloadUrl)
at OpenQA.Selenium.IE.InternetExplorerDriverService.CreateDefaultService()
at OpenQA.Selenium.IE.InternetExplorerDriver..ctor(InternetExplorerOptions options)
at OpenQA.Selenium.IE.InternetExplorerDriver..ctor()
at Accelrys.CommonTestFramework.WebActions.WebActionLibrary.CreateSeleniumDriver()
명령 프롬프트에서 실행하고 당신이 그것에 대해 알 수 있도록 노력할 것입니다 생성자
의 과부하에 IEDriverServer의 경로에 전달할 수 있습니다. 미리 감사드립니다. –