-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSelenium.Helper.1.0.2.nuspec
More file actions
31 lines (31 loc) · 1.77 KB
/
Selenium.Helper.1.0.2.nuspec
File metadata and controls
31 lines (31 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Selenium.Helper</id>
<version>1.0.0</version>
<title>Selenium Helper for .NET</title>
<authors>Stuart Dickerson</authors>
<owners>Software Freedom Conservancy</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://github.com/stuartdga/SeleniumHelper</projectUrl>
<iconUrl>http://seleniumhq.org/images/big-logo.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>This package contains .NET helper classes to make the creation of Selenium tests easier. It contains a Connector class that supports various initializations of the Driver. It also contains a utility class to assist in working with elements.</description>
<summary>Helper classes for the .NET version of the Selenium WebDriver API</summary>
<tags>Selenium WebDriver browser automation website testing framework</tags>
<dependencies>
<group targetFramework=".NETFramework4.0">
<dependency id="Selenium.WebDriver" version="3.8.0" />
<dependency id="Selenium.Support" version="3.8.0" />
<dependency id="PhantomJS" version="2.1.1" />
<dependency id="Selenium.WebDriver.ChromeDriver" version="2.34.0" />
</group>
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Configuration" targetFramework="" />
</frameworkAssemblies>
</metadata>
<files>
<file src="SeleniumHelper\bin\Debug\Selenium.Helper.dll" target="lib\net40\Selenium.Helper.dll" />
</files>
</package>