Questions tagged [selenium-edgedriver]

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

168 questions
2
votes
1 answer

Selenium Explicit Waits for invisibility_of_element() not waiting at all

I am trying to make Selenium wait until a loader div is invisible. These are my imports: from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys from selenium.webdriver.support.ui…
2
votes
3 answers

Selenium Edge Python errors auto close Edge browser after test execution

I am trying to test selenium for a solution to auto log into a website but I cant even get Selenium to stay open. It does what it is supposed to do right now and then quits immediately without a driver.quit(). I get the following errors and I wish…
2
votes
2 answers

WebDriverException: unknown error: MSEdge failed to start: was killed

When I want to run my selenium UI test written in C# in my CD pipeline I get EdgeDriverInitialize threw exception. OpenQA.Selenium.WebDriverException: OpenQA.Selenium.WebDriverException: unknown error: MSEdge failed to start: was killed.…
Liero
  • 25,216
  • 29
  • 151
  • 297
2
votes
1 answer

Turn off browser logging from webdrivers in Selenium 4

I'm working on a Java (11) project where we need to do some testing using Edge-Chromium (which is running on Linux via a docker container), so I've had to upgrade the version of Selenium we are using to 4.0.0-beta-4. I've managed to get this bit…
2
votes
2 answers

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…
2
votes
1 answer

How to enable IE mode in Chromium Edge Browser in selenium C#?

I want to automate a website in Edge which is require IE mode to be enabled. How can launch Edge in IE mode in selenium? Below code which I currently use launches Edge in non IE mode, which won't display the website properly. Dim…
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
3 answers

How can I run selenium scripts on Edge headless browser

I want to run my scripts in Edge browser in headless mode.But I am not able to find any proper solution for it. Can anyone suggest on this
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

how to allow mic/camera in edge web browse suing selenium

we have options.add_argument("--use-fake-ui-for-media-stream") options.add_argument("--use-fake-device-for-media-stream") to send fake media to chrome. Is there any such option available for edgedriver? and if what are those?
2
votes
0 answers

Selenium Microsoft Edge browser Automation stops and fails if we run the test on locked machine

Test: Automation test is all about taking screenshots of Video and compare with previous one. I am executing this on Virtual machine (VM) - Windows 10 64bit. Other Browser Status: Chrome and Firefox are working good whether Desktop is locked or…
Mike ASP
  • 2,013
  • 2
  • 17
  • 24
1
vote
1 answer

Disable MS Edge JSON Viewer via Selenium EdgeOptions

A recent Edge update has caused a large number of our Selenium-powered integration tests to fail due to the JSON Viewer, which apparently is now enabled by default. It no longer renders the file content in a simple
 but adds a ton of nested…
1
vote
1 answer

I am getting a Python Selenium webdriver.get error and I cannot start Selenium

I want to try automation using Selenium in python. I have installed Selenium 4.10.0 and change the webdriver and browser (Edge) to version 113.0.1774.35. I am using VSCodes in my MacBook. This is my code: from selenium import…
1
vote
0 answers

java.lang.NoClassDefFoundError: org/openqa/selenium/remote/AbstractDriverOptions - Selenium 4

Hi, I tried all possible solutions but I am keep getting exception.My requirement is to use EdgeOptions to add extension in browser before running scripts for that I am using Selenium 4.x.x Caused by: java.lang.ClassNotFoundException:…
1
2
3
11 12