Selenium.WebDriver.IEDriver
4.5.0
See the version list below for details.
dotnet add package Selenium.WebDriver.IEDriver --version 4.5.0
NuGet\Install-Package Selenium.WebDriver.IEDriver -Version 4.5.0
<PackageReference Include="Selenium.WebDriver.IEDriver" Version="4.5.0" />
paket add Selenium.WebDriver.IEDriver --version 4.5.0
#r "nuget: Selenium.WebDriver.IEDriver, 4.5.0"
// Install Selenium.WebDriver.IEDriver as a Cake Addin #addin nuget:?package=Selenium.WebDriver.IEDriver&version=4.5.0 // Install Selenium.WebDriver.IEDriver as a Cake Tool #tool nuget:?package=Selenium.WebDriver.IEDriver&version=4.5.0
NuGet package - Selenium WebDriver IEDriver
What's this?
This NuGet package installs IE Driver(x86) for Selenium WebDriver into your Unit Test Project.
"IEDriverServer.exe" does not appear in Solution Explorer, but it is copied to the bin folder from the package folder during the build process.
This package is ready for NuGet package restoring, and no need to commit the "IEDriverServer.exe" binary into the source code control repository.
How to install?
For example, enter the following command at the package manager console on Visual Studio.
PM> Install-Package Selenium.WebDriver.IEDriver -Version 4.5.0
Required Configuration
Before automation Internet Explorer (or IE mode in Microsoft Edge), you must set up some configurations as below:
- You must set the "Protected Mode" settings for each zone to be the same value.
- You also need to set "Change the size of text, apps, and other items" to 100% in display settings.
Please see also: 🌎"Required Configuration - IE Driver Server | Selenium"
Notice
The "Enable Protected Mode" check box no longer exists in the "Internet Properties" dialog of the control panel on Windows 11 or later because Internet Explorer as a standalone application is no longer supported on Windows 11.
To configure the "Protected Mode" settings for each zone on Windows 11, I recommend using "Local Group Policy Editor" with the following steps instead of using the "Internet Properties" dialog.
- Open the "Edit group policy" menu item from the Start menu.
- Then, the "Local Group Policy Editor" window will be opened.
- Expand the left tree from the root node "Local Computer Policy" to "Computer Configuration" > "Administrative Templates" > "Windows Components" > "Internet Explorer" > "Internet Control Panel" > "Security Page".
- You will see some sub-nodes that node name ends with "...Zone", and you should be able to see the "Turn on Protected Mode" setting item In each sub-node.
- Double click the "Turn on Protected Mode" setting item and select "Enable" or "Disable," which you want, and click the "OK" button to apply and close it.
- Do that for all of the "...Zone" sub-nodes.
How to automate IE mode in Microsoft Edge?
To automate IE mode in Microsoft Edge (not Internet Explorer as a standalone application), you should have to configure the options for IE Driver like below:
using OpenQA.Selenium;
using OpenQA.Selenium.IE;
var ieOptions = new InternetExplorerOptions
{
// These 3 lines are needed to use Microsoft Edge IE mode.
AttachToEdgeChrome = true,
EdgeExecutablePath = "C:/Program Files (x86)/Microsoft/Edge/Application/msedge.exe",
IgnoreZoomLevel = true,
};
using var driver = new InternetExplorerDriver(ieOptions);
...
Please see also: 🌎"Use Internet Explorer Driver to automate IE mode in Microsoft Edge | Microsoft Docs"
How to include the driver file into published files?
"IEDriverServer.exe" isn't included in published files on the default configuration. This behavior is by design.
If you want to include "IEDriverServer.exe" into published files, please define the _PUBLISH_IEDRIVER
compilation symbol.
Another way, you can define PublishIEDriver
property with value is "true" in the MSBuild file (.csproj, .vbproj, etc...) to publish the driver file instead of defining compilation symbol.
<Project ...>
...
<PropertyGroup>
...
<PublishIEDriver>true</PublishIEDriver>
...
</PropertyGroup>
...
</Project>
You can also define the PublishIEDriver
property from the command line -p
option for the dotnet publish
command.
> dotnet publish -p:PublishChromeDriver=true
Note
PublishIEDriver
MSBuild property always overrides the condition of defining the_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.
Appendix
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 configures msbuild tasks such as .csproj to copy IEDriverServer.exe into the output folder during the build process.
License
The build script (.targets file) in this NuGet package is licensed under The Unlicense.
The binary file of the IE Driver is licensed under the Apache License, Version 2.0.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (39)
Showing the top 5 NuGet packages that depend on Selenium.WebDriver.IEDriver:
Package | Downloads |
---|---|
AutoToolKit
MzAutomation Test Framework. Documentation coming soon.. |
|
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. |
|
Animatronio
Selenium Framework |
|
Ministry.WebDriver.Extensions
A basic styled framework to build a structured page or component model for writing UI Automation tests. |
|
TestingDriver
Package Description |
GitHub repositories (10)
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.
|
|
AutomateThePlanet/AutomateThePlanet-Learning-Series
Automate The Planet Series Source Code
|
|
featurist/coypu
Intuitive, robust browser automation for .Net
|
|
Implem/Implem.Pleasanter
Pleasanter is a no-code/low-code development platform that runs on .NET. You can quickly create business applications with simple operations.
|
|
Accenture/Ocaramba
C# Framework to automate tests using Selenium WebDriver
|
Version | Downloads | Last updated |
---|---|---|
4.14.0 | 272,354 | 10/11/2023 |
4.11.0 | 75,361 | 7/31/2023 |
4.10.0 | 145,755 | 6/7/2023 |
4.8.1 | 114,571 | 2/18/2023 |
4.8.0 | 31,063 | 1/23/2023 |
4.7.0 | 88,788 | 12/2/2022 |
4.6.0 | 29,909 | 11/4/2022 |
4.5.0 | 42,519 | 9/28/2022 |
4.3.0 | 130,061 | 8/9/2022 |
4.2.0 | 149,585 | 5/28/2022 |
4.0.0.1 | 106,306 | 3/22/2022 |
4.0.0 | 247,840 | 11/26/2021 |
3.150.1.2 | 1,917,729 | 7/15/2020 |
3.150.1.2-beta | 3,905 | 7/12/2020 |
3.150.1.1 | 53,747 | 6/28/2020 |
3.150.1.1-beta | 7,866 | 5/25/2020 |
3.150.1 | 1,517,485 | 10/18/2019 |
3.150.0 | 414,858 | 8/23/2019 |
3.141.59 | 545,278 | 4/11/2019 |
3.141.5 | 658,839 | 1/15/2019 |
3.141.0 | 423,431 | 11/1/2018 |
3.14.0 | 704,288 | 8/3/2018 |
3.13.0 | 244,827 | 6/26/2018 |
3.12.0 | 245,620 | 5/9/2018 |
3.11.1 | 382,929 | 3/14/2018 |
3.11.0 | 27,613 | 3/12/2018 |
3.10.0 | 54,767 | 3/3/2018 |
3.9.0 | 130,537 | 2/6/2018 |
3.8.0 | 316,960 | 12/2/2017 |
3.7.0 | 281,047 | 11/4/2017 |
3.6.0 | 146,626 | 9/26/2017 |
3.5.1 | 107,697 | 8/18/2017 |
3.5.0 | 29,481 | 8/11/2017 |
3.4.0 | 537,315 | 4/22/2017 |
3.3.0 | 137,559 | 3/8/2017 |
3.2.0 | 51,204 | 2/24/2017 |
3.1.0 | 40,761 | 2/17/2017 |
3.0.0.1 | 190,144 | 11/15/2016 |
3.0.0.1-beta | 6,929 | 10/30/2016 |
3.0.0 | 64,051 | 10/14/2016 |
2.53.1.1 | 107,374 | 8/10/2016 |
2.53.1 | 19,047 | 8/10/2016 |
2.53.0.1-beta | 9,596 | 5/5/2016 |
2.53.0 | 176,716 | 3/18/2016 |
2.52.2 | 7,655 | 3/15/2016 |
2.49.0 | 42,823 | 1/26/2016 |
2.48.0 | 66,874 | 10/8/2015 |
2.47.0 | 32,417 | 8/12/2015 |
2.46.0 | 16,452 | 6/25/2015 |
2.45.0.3 | 9,407 | 6/3/2015 |
2.45.0.2-beta | 4,638 | 3/6/2015 |
2.45.0.1 | 24,250 | 3/3/2015 |
2.45.0 | 7,260 | 3/3/2015 |
2.44.0 | 58,709 | 10/30/2014 |
2.43.0 | 13,921 | 9/20/2014 |
2.42.0.1-beta2 | 4,250 | 8/14/2014 |
2.42.0.1-beta | 4,376 | 8/13/2014 |
2.42.0 | 15,373 | 6/4/2014 |
2.41.0.1 | 9,099 | 4/7/2014 |
2.41.0.1-beta3 | 4,061 | 4/5/2014 |
2.41.0.1-beta2 | 4,567 | 4/4/2014 |
2.41.0 | 5,618 | 3/31/2014 |
2.40.0 | 15,402 | 2/25/2014 |
2.39.0 | 4,878 | 2/22/2014 |
2.35.3.3 | 15,842 | 8/29/2013 |
2.35.3.2 | 4,835 | 8/28/2013 |
2.35.3.1 | 4,762 | 8/28/2013 |
2.35.3 | 10,184 | 8/28/2013 |
v.4.5.0
- IE Driver 4.5.0 release