Questions tagged [selenium-edgedriver]

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

168 questions
55
votes
7 answers

Is there a Selenium WebDriver available for the Microsoft Edge browser?

As of the date of this post the name "Microsoft Edge" has just been officially announced as the default browser for the new Windows 10. It may be premature to ask but I would like to know if a new Selenium WebDriver is available for it and if not,…
9
votes
3 answers

Microsoft Edge WebDriver - Unexpected error. Unknown error

I am getting the following exception when trying to get Microsoft Edge automation to work with Selenium: OpenQA.Selenium.WebDriverException: Unexpected error. Unknown error I am using the Selenium.WebDriver.MicrosoftDriver NuGet package, version…
Patrick
  • 5,526
  • 14
  • 64
  • 101
8
votes
2 answers

How to add arguments to edgeOptions in using edgeDriver selenium

I have added the options for chromedriver for selenium testing in my project but i dont understand the appropriate methods for edgedriver. I have tried all the possibilities. Can someone help me out? Thankyou. ChromeOptions options = new…
6
votes
5 answers

How Do I Automatically Update the ChromeDriver or EdgeDriver in VBA?

I have searched the web for a solution to "auto-update" my Selenium EdgeDriver automatically. For those who use SeleniumBasic, you know it can be a hassle to manually download the driver from the respective webpage every so often when your main Host…
5
votes
2 answers

EdgeDriver - Cannot change window size in Edge

I am using the EdgeDriver for running automation tests on my browser (Edge 38.14393.0.0). My tests are in C#, so I am using the .NET driver: using OpenQA.Selenium.Remote; using OpenQA.Selenium.Edge; var options = new…
Andry
  • 16,172
  • 27
  • 138
  • 246
4
votes
3 answers

How to check if window is minimized with Edge Selenium webdriver in Powershell

One would think that this should be an easy thing to do, but I cannot find a way to detect whether the Chromium Edge Selenium webdriver Window is minimized or not in Powershell. Specifically, the size and position of a Window seems to be the same…
4
votes
1 answer

Python Selenium Failed to open file to mark as storage reserve

I am using EdgeDriver with Selenium and Python 3 I have been able to fix it by manually creating the js folder, but the EdgeDriver window does not load the page, it is showing Data;, in the address bar. These may be related on unrelated errors. But…
Mich
  • 3,188
  • 4
  • 37
  • 85
3
votes
2 answers

Powershell script causing Selenium Edge WebDriver's 'FindElementBy' method error

I would like to automate a website. First there is a login page and then I want to navigate through the website by clicking two buttons. However, due to internal guidelines, I can only use the Edge browser and Powershell. The script was already…
3
votes
0 answers

How to get performance LOG on EDGE driver

Hello i am trying to using same code to retrieve performance log from both Chrome and Edge to scan for errors , however for edge i am getting org.openqa.selenium.InvalidArgumentException: invalid argument: log type 'performance' not found (Session…
3
votes
2 answers

org.openqa.selenium.interactions.MoveTargetOutOfBoundsException: move target out of bounds using Selenium Chrome and java.version: '16.0.2'

I am trying to click a link that is on a dropdown menu. This dropdown menu appears when I hover over a button. Right now, my test crashes with a MoveTargetOutOfBoundsException, which happens when I try to hover the button. When I open the page in my…
3
votes
2 answers

c# - Selenium WebDriver 4 not working with Edge (chromium)

I just updated my test framework to WebDriver 4. Seems Firefox required small tweaks, Chrome works correctly but Edge (chromium) does not work at all. I get a following error: Could not load type 'OpenQA.Selenium.Remote.CapabilityType' from assembly…
3
votes
2 answers

Issue with Microsoft’s Edge version’s compatibility with MSEdgeDriver version(84,85,86)

I downloaded the latest version:83.0.478.61 (Official build) (64-bit) of Edge from https://www.microsoft.com/en-us/edge, but I am not able to make it work with selenium. It appears that selenium’s Edger drivers in…
Heike
  • 149
  • 1
  • 1
  • 11
3
votes
2 answers

How to set the download folder for Edge in Selenium?

I am writing automated tests using Selenium. I want to set the download directory in Edge so that I can download files as part of my test. There is an EdgeOptions object that I can provide when creating the EdgeDriver, but I don't know what to set…
3
votes
1 answer

Headless Edge driven through Selenium by C#

Given that Selenium can drive the Edge browser for programming automated testing in C#, as noted in this article: https://blogs.windows.com/msedgedev/2015/07/23/bringing-automated-testing-to-microsoft-edge-through-webdriver/ Is it possible to run it…
Matt W
  • 11,753
  • 25
  • 118
  • 215
3
votes
3 answers

Open Edge in InPrivate mode using Selenium

I am using Selenium 3.4 to launch Edge using the Microsoft WebDriver which is now maintained by Microsoft. Is there any way I can launch the Browser in InPrivate mode using Selenium? I have searched for answers but couldn't find any. The closest I…
1
2 3
11 12