This NuGet package install IE Driver(x86) for Selenium WebDriver into your Unit Test Project.
この NuGet パッケージは、Selenium WebDriver用 IE Driver(x86) を単体テストプロジェクトに追加します。
"IEDriverServer.exe" added as a linked project item, and copied to bin folder at the build.
"IEDriverServer.exe" はリンクされたアイテムとしてプロジェクトに追加され、ビルド時に bin フォルダにコピーされます。
NuGet package restoring ready, and no need to commit "IEDriverServer.exe" binary into source code control repository.
NuGet パッケージの復元に対応済み、"IEDriver.exe" をソース管理リポジトリに登録する必要はありません。
For example, at the package manager console on Visual Studio, enter following command.
一例として、Visual Studio 上のパッケージ管理コンソールにて、下記のコマンドを入力してください。
PM> Install-Package Selenium.WebDriver.IEDriver
IEDriverServer.exe exists at
" {solution folder} /packages/Selenium.WebDriver.IEDriver. {ver} /driver"
folder.
{Solution folder}/
+-- packages/
| +-- Selenium.WebDriver.IEDriver.{version}/
| +-- driver/
| | +-- IEDriverServer.exe
| +-- tools/
+-- {project folder}/
+-- bin/
+-- Debug/
| +-- IEDriverServer.exe (copy from above by build process)
+-- Release/
+-- IEDriverServer.exe (copy from above by build process)
And package installer configure msbuild task such as .csproj to copy IEDriverServer.exe into output folder during build process.