| <?xml version="1.0" encoding="utf-8"?> |
| <package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> |
| <metadata> |
| <id>$packageid$</id> |
| <version>$version$</version> |
| <authors>Selenium Committers</authors> |
| <copyright>Copyright © 2020 Software Freedom Conservancy</copyright> |
| <owners>selenium</owners> |
| <title>WebDriver-backed Selenium</title> |
| <requireLicenseAcceptance>false</requireLicenseAcceptance> |
| <summary>Implementation of the Selenium Remote Control (RC) API, using WebDriver technology</summary> |
| <description> |
| Selenium is a set of different software tools each with a different approach |
| to supporting browser automation. These tools are highly flexible, allowing |
| many options for locating and manipulating elements within a browser, and one |
| of its key features is the support for automating multiple browser platforms. |
| This package contains the .NET bindings for the deprecated, more procedural |
| Selenium Remote Control (or Selenium RC) API, but implemented using the current |
| WebDriver technology. It does not require a running instance of the Selenium |
| Server, and is not limited to the functionality available from within the |
| JavaScript sandbox. It is intended as a transitional package to allow |
| organizations with significant investment in the Selenium RC API to run their |
| code with minimal modifications until they are able to migrate to the Selenium |
| WebDriver API. |
| </description> |
| <projectUrl>https://selenium.dev</projectUrl> |
| <repository url="https://github.com/SeleniumHQ/selenium" /> |
| <license type="expression">Apache-2.0</license> |
| <iconUrl>https://selenium.dev/images/selenium_logo_square_green.png</iconUrl> |
| <icon>images\icon.png</icon> |
| <tags>selenium webdriver remote control rc browser automation</tags> |
| <dependencies> |
| <group targetFramework="net45"> |
| <dependency id="Selenium.WebDriver" version="$version$" exclude="Build,Analyzers" /> |
| </group> |
| <group targetFramework="net46"> |
| <dependency id="Selenium.WebDriver" version="$version$" exclude="Build,Analyzers" /> |
| </group> |
| <group targetFramework="net47"> |
| <dependency id="Selenium.WebDriver" version="$version$" exclude="Build,Analyzers" /> |
| </group> |
| <group targetFramework="net48"> |
| <dependency id="Selenium.WebDriver" version="$version$" exclude="Build,Analyzers" /> |
| </group> |
| <group targetFramework="netstandard2.0"> |
| <dependency id="Selenium.WebDriver" version="$version$" exclude="Build,Analyzers" /> |
| </group> |
| <group targetFramework="netstandard2.1"> |
| <dependency id="Selenium.WebDriver" version="$version$" exclude="Build,Analyzers" /> |
| </group> |
| <group targetFramework="net5.0"> |
| <dependency id="Selenium.WebDriver" version="$version$" exclude="Build,Analyzers" /> |
| </group> |
| <group targetFramework="net6.0"> |
| <dependency id="Selenium.WebDriver" version="$version$" exclude="Build,Analyzers" /> |
| </group> |
| </dependencies> |
| <frameworkAssemblies> |
| <frameworkAssembly assemblyName="System.Drawing" /> |
| </frameworkAssemblies> |
| </metadata> |
| <files> |
| <file src="**/Selenium.WebDriverBackedSelenium.dll" target="lib" /> |
| <file src="**/Selenium.WebDriverBackedSelenium.pdb" target="lib" /> |
| <file src="**/Selenium.WebDriverBackedSelenium.xml" target="lib" /> |
| <file src="../icon.png" target="images\"/> |
| </files> |
| </package> |