You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
... should be calling Start-SeEdgeDriver rather than just Start-EdgeDriver. In the 4.0 preview, I get this error when I try to start a (Chromium) Edge driver:
Start-EdgeDriver : The term 'Start-EdgeDriver' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At C:\Program Files\WindowsPowerShell\Modules\selenium\4.0.0\Selenium.psm1:1802 char:32
+ 'Edge' { $Driver = Start-EdgeDriver @PSBoundParameters; b ...
+ ~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Start-EdgeDriver:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
The text was updated successfully, but these errors were encountered:
* Start-SeEdgeDriver throw error on launch (#188)
* Edge fix + general debug fix
* .Where is not a method for CIM Instance object (#190)
* Firefox not using the proper DriverOption (#191)
* Filter parameter to get-seelement and applied to Get-SeInput (#186#192 )
Also fixed a logic error with $Value that was used both as a parameter and a variable, which caused issues.
* Legacy code removal causing error with screenshots (#187)
* Fix - Filter + Filter error message
* Select input by attributes fix.
* Edge (new) driver option need to be of type ChromeOptions (#195)
* Edge driver option fix (#193)
* Edge - semi revert (#197)
Since Start-SeDriver have priority over options, options should not handle stuff that depends on parameters.
* IE fix (#193)
* MSEdge Fix (#193)
* ErrorAction Stop when MSEdge Service fail to create.
* AcceptInsecureCertificates (Firefox, Chrome, Edge) (#189)
* #177 Get-SeInput view (initial commit)
* V4.0.0-preview2 build
* Drivers update
* V4.0.0-preview2 changelog
* Version update
Hi gang!
I think this line:
selenium-powershell/Public/Start-SeDriver.ps1
Line 111 in 5e28499
... should be calling
Start-SeEdgeDriver
rather than justStart-EdgeDriver
. In the 4.0 preview, I get this error when I try to start a (Chromium) Edge driver:The text was updated successfully, but these errors were encountered: