Questions tagged [selenium-edgedriver]

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

96 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,…
8
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
  • 4,472
  • 9
  • 54
  • 85
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
  • 2,357
  • 1
  • 25
  • 61
4
votes
1 answer

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…
4
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
  • 14,281
  • 23
  • 124
  • 216
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
  • 9,407
  • 17
  • 83
  • 146
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…
2
votes
2 answers

How to initiate Edge (Chromium) browsing session using Selenium and Python

I am getting following error while running driver Edge opens but then this error pops up and cant run rest of the code MY CODE from selenium import webdriver driver = webdriver.Edge() driver.get("https://stackoverflow.com") Traceback (most recent…
2
votes
2 answers

A exception with a null response was thrown sending an HTTP request to the remote WebDriver server for URL

Getting this error when trying to run an instance of EdgeDriver for Selenium. I'm not getting an issue like this at all when running ChromeDriver. Unfortunately, I've been asked to use Edge for this, so I don't have a choice but to go with…
2
votes
0 answers

Selenium Java on MAC - Edgedriver is not working

Hi people: I have the next situation. I want to run automation with Selenium, specifically with Microsoft Edge on Mac. I have installed Version 77.0.235.15 (Official build) Beta (64-bit) Edgedriver: Version: 77.0.235.15 The rest of the browsers run…
2
votes
1 answer

What is the Desired Capabilities to handle this popup of Microsoft Edge?

There is popup which raised when trying to close tab of Microsoft Edge browser, Do we have any capabilities by which it can be control ? Or is there any relevant settings, from which it may not ask. Tried : …
2
votes
1 answer

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…
1
vote
1 answer

How to disable SmartScreen (safebrowsing in edge) on C# Selenium Edge Chromium?

I'm trying to run some selenium C# end-to-end tests on Edge Chromium browser. One of the tests does a download check, basically it downloads a xml file and check whether it exists in the downloaded location. I'm using Microsoft.Edge.SeleniumTools…
1
vote
0 answers

Robot Framework: Accessing web application and associated web objects with Edge Chromium IE Mode

While I can perform test automation of web applications in Edge Chromium using Selenium 4 and latest RobotFramework-SeleniumLibrary, legacy IE sites require Edge to be in IE mode. I’m not sure how to enable this in Python Robot Framework? I really…
1
vote
1 answer

MSEdgeDriver - session not created: No matching capabilities found error on Selenium with Python

Having some trouble getting our automation to run on Microsoft Edge. Have the correct browser version driver installed and have tried a few other 'fixes' to no avail. This is using Selenium with Python3 on PyCharm. Going back to the beginning, this…
1
2 3 4 5 6 7