We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c3ce393 + 195dd77 commit b1e226eCopy full SHA for b1e226e
Selenium.psd1
-4.5 KB
Selenium.psm1
@@ -1,5 +1,6 @@
1
[System.Reflection.Assembly]::LoadFrom("$PSScriptRoot\assemblies\WebDriver.dll")
2
[System.Reflection.Assembly]::LoadFrom("$PSScriptRoot\assemblies\WebDriver.Support.dll")
3
+
4
function Start-SeChrome {
5
Param(
6
[Parameter(Mandatory = $false)]
@@ -30,6 +31,10 @@ function Start-SeChrome {
30
31
New-Object -TypeName "OpenQA.Selenium.Chrome.ChromeDriver" -ArgumentList $Chrome_Options
32
}
33
34
+function Start-SeIe {
35
+ New-Object -TypeName "OpenQA.Selenium.IE.InternetExplorerDriver"
36
+}
37
38
function Start-SeFirefox {
39
param([Switch]$Profile)
40
@@ -153,7 +158,6 @@ function Invoke-SeClick {
153
158
$Element.Click()
154
159
155
160
156
-
157
161
162
163
function Get-SeKeys {
0 commit comments