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
* 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
Copy file name to clipboardExpand all lines: ChangeLog.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,21 @@
1
1
2
+
# 4.0.0-preview3 (Planned)
2
3
3
4
5
+
6
+
# 4.0.0-preview2 (Prerelease)
7
+
## Added / Modified
8
+
- Get-SeElement -Filter; Add a new parameter to do additional filtering before returning. This is equivalent to doing a Where afterward but with the Get-SeElement error management logic applied before returning. (#192)
Filter the obtained output with additional conditions. This is equivalent to doing a Where-Object afterward with the benefit of going trough the Get-SeElement error management.
136
+
137
+
```yaml
138
+
Type: ScriptBlock
139
+
Parameter Sets: (All)
140
+
Aliases:
141
+
142
+
Required: False
143
+
Position: Named
144
+
Default value: None
145
+
Accept pipeline input: False
146
+
Accept wildcard characters: False
147
+
```
148
+
134
149
### -Single
135
150
Expectation that only one element will be returned. An error will be returned if that parameter is set and more than one corresponding element is found.
if ($state-eq [SeWindowState]::Headless -or$PrivateBrowsing) { Write-Warning'The Internet explorer driver does not support headless or Inprivate operation; these switches are ignored' }
0 commit comments