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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
# # Module manifest for module 'Selenium' # # Generated by: Adam Driscoll # # Generated on: 8/31/2018 # # Modified James O'Neill 30 Nov 2019 @{ ModuleVersion = '3.0.1' 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 = @( 'Start-SeChrome' , 'Start-SeEdge' , 'Start-SeNewEdge' , 'Start-SeFirefox' , 'Start-SeInternetExplorer' , 'Start-SeNewEdge', 'Start-SeRemote' , 'Stop-SeDriver' , 'Invoke-SeClick' , 'Send-SeClick' , 'Get-SeCookie' , 'Remove-SeCookie' , 'Set-SeCookie' , 'Get-SeElement', 'Get-SeElementAttribute' , 'Get-SeElementCssValue' , 'Get-SeSelectionOption', 'Get-SeKeys' , 'Send-SeKeys' , 'Save-SeScreenshot' , 'New-SeScreenshot' 'Invoke-SeScreenshot' , 'Open-SeUrl' , 'Get-SeWindow' , 'Switch-SeWindow', 'Switch-SeFrame', 'Clear-SeAlert', 'SeOpen', 'SeType', 'SeShouldHave' ) AliasesToExport = @( 'SeChrome' , 'SeFirefox', 'SeIE' , 'SeInternetExplorer' , 'CrEdge' , 'NewEdge', 'MSEdge' , 'LegacyEdge', 'Start-SeLegacyEdge', 'Enter-SeUrl' , 'Find-SeElement', 'SeAccept', 'SeDismiss', 'SeClick', 'SeClose', 'SeElement', 'SeFrame', 'SeNavigate', 'SeScreenshot', 'SeSelection') CmdletsToExport = @() VariablesToExport = @() DscResourcesToExport = @() FileList = @('.\assemblies', '.\README.md', '.\Selenium.psm1' '.\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 = 'beta2' } # 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 = @() # Format files (.ps1xml) to be loaded when importing this module # FormatsToProcess = @() # 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 = '' } |