Questions tagged [selenium-edgedriver]

Selenium EdgeDriver is a WebDriver implementation that controls the Microsoft Edge browser using a MicrosoftWebDriver server.

168 questions
0
votes
2 answers

Python (Selenium) with MS Edge browser: 'Connection aborted.', ConnectionResetError(10054, ...) "Microsoft Web Driver has stopped working"

Every time I run my python code, the Edge browser opens but does not load the URL. Then Windows system displays a dialog saying: Microsoft Web Driver has stopped working. A problem caused the program to stop working correctly. Windows will close…
0
votes
2 answers

An unhandled exception of type SeleniumWebDriverException occurred in WebDriverdll A exception with a null response was thrown using EdgeDriver

I am using Selenium in C# with the Edge driver however when I run the code I receive the following error. Using OpenQA.Selenium; using OpenQA.Selenium.Edge; class HomePageTests { static void Main(string[] args) { { …
0
votes
1 answer

Is it possible to use Edge in mobile emulation?

Just I would like to ask is it possible? I would like to use mobile emulation on EdgeDriver, but I don't know how. I am using Java and Selenium.
0
votes
0 answers

Microsoft Edge Driver - InvalidSelectorException for xpath which is working for all other browsers

I am running my tests in all the browsers and facing an issue while working with Edge browser. I have a code to find an element on page like below WebElement element = driver.findElement(By.xpath("//div[contains(@title,'UserName')]")); Above code…
0
votes
0 answers

Selenium Java - Cannot Load URL in Microsoft Edge version 18

My Edge Version: 18.18362 OS Build Version: 18.18362 Installed Edge Driver with the command DISM.exe /Online /Add-Capability /CapabilityName:Microsoft.WebDriver~~~~0.0.1.0 Selenium Java code to Initialize browser…
Arjun Dev
  • 406
  • 5
  • 16
0
votes
0 answers

How to resolve the issue with the browser is being closed when start running testng using Edge driver

I have a couple issues when I run the test with edge web browser. The first issue is that every time I run the test by run as > testng test , the automation will close all the existing open edge web browser and then it will open a brand new edge…
0
votes
1 answer

Enabling AcceptInsecureCertificates in Selenium EdgeDriver options throws an exception

Setup is Windows 10 v1903 and Visual Studio 2019 v16.2.2 I've installed the EdgeDriver using the following command: DISM.exe /Online /Add-Capability /CapabilityName:Microsoft.WebDriver~~~~0.0.1.0 I've then created a new .NET Core console app and…
0
votes
1 answer

WebDriverError: Unknown error, while opening second edge window using Selenium(Javsacript)

I am creating automation tool for Edge Browser using selenium, where I need to open three edge window with three different URLs parallelly. First Edge browser window launch successfully, but when calling function openEdgeBrowser for second url, it…
0
votes
2 answers

Is Driver exe for New Microsoft Chromium Edge Available?

Does anyone know whether Driver exe for New Microsoft Chromium Edge Available ? If Yes, please share link. Thanks.
0
votes
1 answer

Running EdgeDriver in Jenkins

I have Selenium tests that I am running through Jenkins on a build server. The tests all run as expected in Chrome (using ChromeDriver) and Firefox (using FirefoxDriver). However, the tests don't run in Edge using EdgeDriver. When the tests run it…
0
votes
1 answer

how to set up edgedriver correctly? getting the following error

I'm using NUnit and Selenium in C# to build a framework which contains running multiple testcases on several browsers. Microsoft Edge is also supported in this case. When I set up my tests chrome and firefox run correctly but edge gives the…
0
votes
3 answers

Second checkbox click is ignored

The following code ignores the second checkbox click. Anybody knows why and how to solve? Set a breakpoint in the last line to see the checkbox is still checked... private final static String CHECKBOXBUTTON_URL =…
0
votes
0 answers

Edgedriver: Getting timeout exception when webDriver.navigate().refresh() is executed

This is the code where I instantiate the web driver: System.setProperty("webdriver.edge.driver", driverFilePath); webDriver = new EdgeDriver(); And it works as expected until I try to refresh UI during the execution using below code…
Swapnil Pingle
  • 40
  • 1
  • 12
0
votes
0 answers

WebDriverException For Edge Browser

I am trying to automate a website on Microsoft Edge browser using geb. The test script is running fine on IE and Chrome but giving an error on Edge browser. The error is: org.openqa.selenium.WebDriverException: ÀՉ았Չtor not implemented (WARNING:…
0
votes
2 answers

Selenium leaves control after clicking to file explorer Browse button in MS Edge

Selenium leaves control after clicking to file explorer Browse button in MS Edge. This works fine in Chrome and Firefox but absolutely blocking to run next step in the code. I tried code via all possible ways and below code works to click to…