Skip to content

Installation

Lukasz Rajchel edited this page Mar 9, 2015 · 6 revisions

Installation

The following packages are being distributed with each release

  • Selenium.WebDriver.Extensions.Core - constains the core selectors support including query selectors
  • Selenium.WebDriver.Extensions.JQuery - contains the jQuery support, depends on Core package
  • Selenium.WebDriver.Extensions.Sizzle - contains the Sizzle support, depends on Core package
  • Selenium.WebDriver.Extensions - contains all of the extensions, depends on all other packages

If you want to install the "full" version of the extensions you can do that simply by running the following command in the Visual Studio Package Manager

Install-Package Selenium.WebDriver.Extensions

If you only need part of the functionality you can install one of the smaller packages. The dependent packages are going to be installed automatically.

For example, if you want only jQuery support you can add it with the following command in the Visual Studio Package Manager

Install-Package Selenium.WebDriver.Extensions.JQuery

#Uninstallation

If you decide that you don't need the package anymore you can uninstall it also with the Visual Studio Package Manager by running the following command.

Uninstall-Package Selenium.WebDriver.Extensions

You can check which packages you have installed in your project by checking its packages.config file.

Clone this wiki locally