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.
1 parent 7629318 commit 43e3c84Copy full SHA for 43e3c84
Public/ConvertTo-Selenium.ps1
@@ -89,7 +89,7 @@ function ConvertTo-Selenium {
89
}
90
{ $_.command -eq 'close' } { { Stop-SeDriver } ; Break }
91
{ $_.command -in $ActionMap.Keys } {
92
- $Action = $ActionMap[$_.command] | Get-Replace -From '$Keys' -To $_.value -QuotesTo -By $_.value
+ $Action = $ActionMap[$_.command] | Get-Replace -From '$Keys' -To ($_.value.Replace('${KEY_ENTER}', '{{Enter}}')) -QuotesTo -By $_.value
93
{ Get-SeElement -By $By | _Action_ } | Get-Replace -From '_Action_' -To $Action -By $_.target
94
Break
95
0 commit comments