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 c2b56fa commit b153741Copy full SHA for b153741
Selenium.psm1
@@ -60,7 +60,9 @@ function Start-SeChrome {
60
}
61
62
function Start-SeInternetExplorer {
63
- New-Object -TypeName "OpenQA.Selenium.IE.InternetExplorerDriver"
+ $InternetExplorer_Options = New-Object -TypeName "OpenQA.Selenium.IE.InternetExplorerOptions"
64
+ $InternetExplorer_Options.IgnoreZoomLevel = $true
65
+ New-Object -TypeName "OpenQA.Selenium.IE.InternetExplorerDriver" -ArgumentList $InternetExplorer_Options
66
67
68
function Start-SeEdge {
0 commit comments