Selenium.WebDriver.IEDriver
3.150.1.2
Install IE Driver(x86) for Selenium WebDriver into your Unit Test Project.
"IEDriverServer.exe" is copied to bin folder from package folder when the build process.
NuGet package restoring ready, and no need to commit "IEDriverServer.exe" binary into source code control repository.
/ Selenium WebDriver用 IE Driver(x86) を単体テストプロジェクトに追加します。
"IEDriverServer.exe" はビルド時にパッケージフォルダから bin フォルダへコピーされます。
NuGet パッケージの復元に対応済み、"IEDriver.exe" をソース管理リポジトリに登録する必要はありません。
/ The MSBuild script that contained this package is free and unencumbered software released into the public domain.
/ "iedriverserver.exe" is licensed under the Apache license v.2.0.
Install-Package Selenium.WebDriver.IEDriver -Version 3.150.1.2
dotnet add package Selenium.WebDriver.IEDriver --version 3.150.1.2
<PackageReference Include="Selenium.WebDriver.IEDriver" Version="3.150.1.2" />
paket add Selenium.WebDriver.IEDriver --version 3.150.1.2
#r "nuget: Selenium.WebDriver.IEDriver, 3.150.1.2"
NuGet package - Selenium WebDriver IEDriver
What's this? / これは何?
This NuGet package install IE Driver(x86) for Selenium WebDriver into your Unit Test Project.
この NuGet パッケージは、Selenium WebDriver用 IE Driver(x86) を単体テストプロジェクトに追加します。
"IEDriverServer.exe" does not appear in Solution Explorer, but it is copied to bin folder from package folder when the build process.
"IEDriverServer.exe" はソリューションエクスプローラ上には現れませんが、ビルド時にパッケージフォルダから bin フォルダへコピーされます。
NuGet package restoring ready, and no need to commit "IEDriverServer.exe" binary into source code control repository.
NuGet パッケージの復元に対応済み、"IEDriver.exe" をソース管理リポジトリに登録する必要はありません。
How to install? / インストール方法
For example, at the package manager console on Visual Studio, enter following command.
一例として、Visual Studio 上のパッケージ管理コンソールにて、下記のコマンドを入力してください。
PM> Install-Package Selenium.WebDriver.IEDriver -Version 3.150.1.2
Detail / 詳細
Where is IEDriverServer.exe saved to? / どこに保存?
IEDriverServer.exe exists at
" {solution folder} /packages/Selenium.WebDriver.IEDriver. {ver} /driver"
folder.
{Solution folder}/
+-- packages/
| +-- Selenium.WebDriver.IEDriver.{version}/
| +-- driver/
| | +-- IEDriverServer.exe
| +-- build/
+-- {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.
How to include the driver file into published files? / ドライバーを発行ファイルに含めるには?
"IEDriverServer.exe" isn't included in published files on default configuration. This behavior is by design.
"IEDriverServer.exe" は、既定の構成では、発行ファイルに含まれません。この挙動は仕様です。
If you want to include "IEDriverServer.exe" into published files, please define _PUBLISH_IEDRIVER
compilation symbol.
"IEDriverServer.exe" を発行ファイルに含めるには、コンパイル定数 _PUBLISH_IEDRIVER
を定義してください。
Another way, you can define PublishIEDriver
property with value is "true" in MSBuild file (.csproj, .vbproj, etc...) to publish the driver file instead of define compilation symbol.
別の方法として、コンパイル定数を定義する代わりに、MSBuild ファイル (.csproj, .vbproj, etc...) 中で PublishIEDriver
プロパティを値 true で定義することでドライバーを発行ファイルに含めることができます。
<Project ...>
...
<PropertyGroup>
...
<PublishIEDriver>true</PublishIEDriver>
...
</PropertyGroup>
...
</Project>
Note / 補足
PublishIEDriver
MSBuild property always override the condition of define _PUBLISH_IEDRIVER
compilation symbol or not. If you define PublishIEDriver
MSBuild property with false, then the driver file isn't included in publish files whenever define _PUBLISH_IEDRIVER
compilation symbol or not.
PublishIEDriver
MSBuild プロパティは常に _PUBLISH_IEDRIVER
コンパイル定数を定義しているか否かの条件を上書きします。もし PublishIEDriver
MSBuild プロパティを false で定義したならば、_PUBLISH_IEDRIVER
コンパイル定数を定義しているか否かによらず、ドライバは発行ファイルに含められません。
NuGet package - Selenium WebDriver IEDriver
What's this? / これは何?
This NuGet package install IE Driver(x86) for Selenium WebDriver into your Unit Test Project.
この NuGet パッケージは、Selenium WebDriver用 IE Driver(x86) を単体テストプロジェクトに追加します。
"IEDriverServer.exe" does not appear in Solution Explorer, but it is copied to bin folder from package folder when the build process.
"IEDriverServer.exe" はソリューションエクスプローラ上には現れませんが、ビルド時にパッケージフォルダから bin フォルダへコピーされます。
NuGet package restoring ready, and no need to commit "IEDriverServer.exe" binary into source code control repository.
NuGet パッケージの復元に対応済み、"IEDriver.exe" をソース管理リポジトリに登録する必要はありません。
How to install? / インストール方法
For example, at the package manager console on Visual Studio, enter following command.
一例として、Visual Studio 上のパッケージ管理コンソールにて、下記のコマンドを入力してください。
PM> Install-Package Selenium.WebDriver.IEDriver -Version 3.150.1.2
Detail / 詳細
Where is IEDriverServer.exe saved to? / どこに保存?
IEDriverServer.exe exists at
" {solution folder} /packages/Selenium.WebDriver.IEDriver. {ver} /driver"
folder.
{Solution folder}/
+-- packages/
| +-- Selenium.WebDriver.IEDriver.{version}/
| +-- driver/
| | +-- IEDriverServer.exe
| +-- build/
+-- {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.
How to include the driver file into published files? / ドライバーを発行ファイルに含めるには?
"IEDriverServer.exe" isn't included in published files on default configuration. This behavior is by design.
"IEDriverServer.exe" は、既定の構成では、発行ファイルに含まれません。この挙動は仕様です。
If you want to include "IEDriverServer.exe" into published files, please define _PUBLISH_IEDRIVER
compilation symbol.
"IEDriverServer.exe" を発行ファイルに含めるには、コンパイル定数 _PUBLISH_IEDRIVER
を定義してください。
Another way, you can define PublishIEDriver
property with value is "true" in MSBuild file (.csproj, .vbproj, etc...) to publish the driver file instead of define compilation symbol.
別の方法として、コンパイル定数を定義する代わりに、MSBuild ファイル (.csproj, .vbproj, etc...) 中で PublishIEDriver
プロパティを値 true で定義することでドライバーを発行ファイルに含めることができます。
<Project ...>
...
<PropertyGroup>
...
<PublishIEDriver>true</PublishIEDriver>
...
</PropertyGroup>
...
</Project>
Note / 補足
PublishIEDriver
MSBuild property always override the condition of define _PUBLISH_IEDRIVER
compilation symbol or not. If you define PublishIEDriver
MSBuild property with false, then the driver file isn't included in publish files whenever define _PUBLISH_IEDRIVER
compilation symbol or not.
PublishIEDriver
MSBuild プロパティは常に _PUBLISH_IEDRIVER
コンパイル定数を定義しているか否かの条件を上書きします。もし PublishIEDriver
MSBuild プロパティを false で定義したならば、_PUBLISH_IEDRIVER
コンパイル定数を定義しているか否かによらず、ドライバは発行ファイルに含められません。
Release Notes
v.3.150.1.2
- Fix: driver file was not copied sometimes.
Dependencies
This package has no dependencies.
Used By
NuGet packages (45)
Showing the top 5 NuGet packages that depend on Selenium.WebDriver.IEDriver:
Package | Downloads |
---|---|
SpecsFor.Mvc
SpecsFor.Mvc is a stand-alone acceptance testing framework for ASP.NET MVC. It enables you to write strongly-typed, refactor friendly integration tests using the browser and testing framework of your choice.
|
|
AutoToolKit
MzAutomation Test Framework.
Documentation coming soon..
|
|
Objectivity.Test.Automation.Common.NUnit
[DEPRECATED]
Use
Install-Package Ocaramba.Features
Install-Package Ocaramba.MsTest
Install-Package Ocaramba.NUnit
Install-Package Ocaramba.xUnit
instead
|
|
Pangolin
A framework for declarative UI testing for ASP.NET apps.
Browsers:
Chrome (>=71)
Firefox (>=70)
IE (>=11)
Dependencies:
MSharp Project:
MSharp.Framework (>= 4.0.103)
Olive Project:
Olive.Testing (>= 2.1.113)
|
|
Animatronio
Selenium Framework
|
GitHub repositories (9)
Showing the top 5 popular GitHub repositories that depend on Selenium.WebDriver.IEDriver:
Repository | Stars |
---|---|
jakubgarfield/Bonobo-Git-Server
Bonobo Git Server for Windows is a web application you can install on your IIS and easily manage and connect to your git repositories. Go to homepage for release and more info.
|
|
featurist/coypu
Intuitive, robust browser automation for .Net
|
|
AutomateThePlanet/AutomateThePlanet-Learning-Series
Automate The Planet Series Source Code
|
|
Warewolf-ESB/Warewolf
Effortless Microservice Design and Integration. This repository includes the code-base for the Warewolf Studio and Server.
|
|
ObjectivityLtd/Ocaramba
C# Framework to automate tests using Selenium WebDriver
|
Version History
Version | Downloads | Last updated |
---|---|---|
3.150.1.2 | 273,842 | 7/15/2020 |
3.150.1.2-beta | 206 | 7/12/2020 |
3.150.1.1 | 22,176 | 6/28/2020 |
3.150.1.1-beta | 890 | 5/25/2020 |
3.150.1 | 745,887 | 10/18/2019 |
3.150.0 | 170,141 | 8/23/2019 |
3.141.59 | 358,851 | 4/11/2019 |
3.141.5 | 443,096 | 1/15/2019 |
3.141.0 | 321,761 | 11/1/2018 |
3.14.0 | 357,527 | 8/3/2018 |
3.13.0 | 145,953 | 6/26/2018 |
3.12.0 | 173,798 | 5/9/2018 |
3.11.1 | 277,187 | 3/14/2018 |
3.11.0 | 21,878 | 3/12/2018 |
3.10.0 | 42,563 | 3/3/2018 |
3.9.0 | 92,869 | 2/6/2018 |
3.8.0 | 193,676 | 12/2/2017 |
3.7.0 | 172,740 | 11/4/2017 |
3.6.0 | 110,053 | 9/26/2017 |
3.5.1 | 78,805 | 8/18/2017 |
3.5.0 | 14,923 | 8/11/2017 |
3.4.0 | 402,150 | 4/22/2017 |
3.3.0 | 108,702 | 3/8/2017 |
3.2.0 | 28,012 | 2/24/2017 |
3.1.0 | 34,443 | 2/17/2017 |
3.0.0.1 | 130,790 | 11/15/2016 |
3.0.0.1-beta | 2,499 | 10/30/2016 |
3.0.0 | 50,067 | 10/14/2016 |
2.53.1.1 | 92,158 | 8/10/2016 |
2.53.1 | 15,233 | 8/10/2016 |
2.53.0.1-beta | 6,130 | 5/5/2016 |
2.53.0 | 142,182 | 3/18/2016 |
2.52.2 | 2,981 | 3/15/2016 |
2.49.0 | 25,578 | 1/26/2016 |
2.48.0 | 49,641 | 10/8/2015 |
2.47.0 | 23,922 | 8/12/2015 |
2.46.0 | 9,597 | 6/25/2015 |
2.45.0.3 | 5,679 | 6/3/2015 |
2.45.0.2-beta | 1,213 | 3/6/2015 |
2.45.0.1 | 14,743 | 3/3/2015 |
2.45.0 | 2,831 | 3/3/2015 |
2.44.0 | 48,668 | 10/30/2014 |
2.43.0 | 7,631 | 9/20/2014 |
2.42.0.1-beta2 | 818 | 8/14/2014 |
2.42.0.1-beta | 631 | 8/13/2014 |
2.42.0 | 10,492 | 6/4/2014 |
2.41.0.1 | 3,988 | 4/7/2014 |
2.41.0.1-beta3 | 616 | 4/5/2014 |
2.41.0.1-beta2 | 609 | 4/4/2014 |
2.41.0 | 1,478 | 3/31/2014 |
2.40.0 | 7,863 | 2/25/2014 |
2.39.0 | 967 | 2/22/2014 |
2.35.3.3 | 8,900 | 8/29/2013 |
2.35.3.2 | 756 | 8/28/2013 |
2.35.3.1 | 741 | 8/28/2013 |
2.35.3 | 5,359 | 8/28/2013 |