Josh Baker
Josh Baker
@gk10gk When I experience this behaviour I execute this PowerShell command and retry: `Get-Process EdgeDriver -ErrorAction SilentlyContinue | Stop-Process -Force -Confirm:$False` What JDK version are you using?
This is how I handle it in Java: ``` static WebDriver driver; EdgeOptions options = new EdgeOptions(); options.addArguments("--guest"); driver = new EdgeDriver(options); ```
@Stefanczc Are you using Selenium, by any chance? They recently released [v4.21.0](https://www.selenium.dev/blog/2024/selenium-4-21-released/). I updated its Maven dependency in my Java project to reflect this and I do not encounter the...
Thanks for the reply, @bwalderman, I appreciate your help. Per the[ Required Configuration](https://www.selenium.dev/documentation/ie_driver_server/#required-configuration) section of the IE Driver Server from Selenium documentation: - I am pointing Selenium WebDriver to the...
I'd use the **Guest Profile** to avoid this issue, unless this **Profile 1** you've created has some other configurations you need that weren't mentioned in your original post. In Selenium...
@rmangin Ah, I see. Wasn't aware your requirements included an extension to be loaded in/with Profile 1. Unfortunately, as you've found Edge does not support extensions in its Guest Profile...
Have you considered `java.awt.Robot`? The below code snippet zooms in 10%, so assuming your default zoom level is 100% this should bring it to 110%: ``` public void testZoom ()...