-
Notifications
You must be signed in to change notification settings - Fork 98
/
Selenium.psd1
92 lines (71 loc) · 3.32 KB
/
Selenium.psd1
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#
# Module manifest for module 'Selenium'
#
# Generated by: Adam Driscoll
#
# Generated on: 8/31/2018
#
# Modified James O'Neill 30 Nov 2019
@{
ModuleVersion = '4.0.0'
GUID = 'a3bdb8c3-c150-48a8-b56d-cd4d43f46a26'
Author = 'Adam Driscoll'
CompanyName = 'Unknown'
Copyright = '(c) 2020 Adam Driscoll. All rights reserved.'
Description = 'Web automation using the Selenium Web Driver'
ScriptsToProcess = @('SeleniumClasses.ps1')
RootModule = 'Selenium.psm1'
RequiredAssemblies = @('./assemblies/WebDriver.dll', './assemblies/WebDriver.Support.dll')
FunctionsToExport = '*'
AliasesToExport = @()
CmdletsToExport = @()
VariablesToExport = @()
DscResourcesToExport = @()
FileList = @('.\assemblies',
'.\Examples',
'.\ChangeLog.md',
'.\README.md',
'.\Selenium.psm1'
'.\Selenium.tests.ps1'
'.\Selenium-Binary-Updater.ps1')
PrivateData = @{
PSData = @{
Tags = @('selenium', 'automation', 'web')
LicenseUri = 'https://github.com/adamdriscoll/selenium-powershell/blob/master/LICENSE'
ProjectUri = 'https://github.com/adamdriscoll/selenium-powershell'
ReleaseNotes = 'Updating WebDrivers for Selenium'
# A URL to an icon representing this module.
# IconUri = ''
Prerelease = 'preview3'
} # End of PSData hashtable
} # End of PrivateData hashtable
# Supported PSEditions
# CompatiblePSEditions = @()
# Minimum version of the Windows PowerShell engine required by this module
# PowerShellVersion = ''
# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''
# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''
# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()
#Type files (.ps1xml) to be loaded when importing this module
TypesToProcess = @('types/Selenium.types.ps1xml')
# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = @('formats/Selenium.format.ps1xml')
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()
# List of all modules packaged with this module
# ModuleList = @()
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
# HelpInfo URI of this module
# HelpInfoURI = ''
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
}