Selenium EdgeDriver is a WebDriver implementation that controls the Microsoft Edge browser using a MicrosoftWebDriver server.
Questions tagged [selenium-edgedriver]
168 questions
0
votes
1 answer
Hide Edge browser with Selenium in VBA Excel
I have a question to ask because I am in trouble.
I would like to be able to hide the Browser Edge while running a VBA Routine using Selenium type library.
Using the Chrome browser I can get the result by writing AddArgument "--headless" but with…

kris9951
- 43
- 6
0
votes
2 answers
selenium 'webdriver' not being recognised (python)
I have installed selenium through python using pip (I ran):
pip install selenium
I'm using Python 3.9.0 and the driver argument isn't being recognized.
My current code.
import selenium
from selenium import webdriver
filepath =…

chunguslover3000
- 11
- 1
0
votes
0 answers
Unable to Create New session with Microsoft Edge with desired capabilities
I am trying to create a Java test using Edge Webdriver and Edge version 86 (available to download).
I am using EdgeOptions as suggested on many threads here
System.setProperty("webdriver.edge.driver", "C:\\edgedriver\\msedgedriver.exe");…

johnsonambrose
- 115
- 1
- 2
- 15
0
votes
1 answer
How to load an extension in Edge using Selenium?
I want to load an extension in Edge while using Selenium in C#.
I have figured I have to use EdgeOptions.AddExtensionPath() but when passing the path no extensions are loaded.
The extension was extracted from %localappdata%\Microsoft\Edge\User…

Jos B
- 87
- 3
- 12
0
votes
0 answers
"invalid argument: 'name' must be a string" when trying to set Edge driver on Watir
I am trying to add edge driver to our automation tests suite.
I am setting the driver like that:
Selenium::WebDriver::Edge::Service.driver_path = EDGEDRIVER_PATH
Watir::Browser.new BROWSER.to_sym,{:unexpected_alert_behaviour => 'ignore', …

Alex
- 27
- 6
0
votes
1 answer
Selenium WebdriverTimeoutException although the page is already loaded
I'm new to Selenium and try to automatically open a website in Full Screen mode.
The website has a Login which is already working with Selenium.
After the login only one button has to be pressed.
Hereby an WebdriverTimoutException is thrown in the…

ggb778
- 9
- 3
0
votes
5 answers
How to open up Microsoft Edge using Selenium and Python
I've already added the msedge driver into the path variable.
cmd confirmed that MSEdgeDriver was started successfully,
however, when I run
import os
from selenium import webdriver
browser2 = webdriver.Edge()
I get an exception error that…

smoochyboi
- 11
- 1
- 2
- 1
0
votes
1 answer
I can't navigate with Edge using Selenium
I'm trying to start Edge browser with Java Selenium:
if(browser.equals("edge")) {
System.setProperty("webdriver.edge.driver", driverPath+"\\MicrosoftWebDriver\\MicrosoftWebDriver.exe");
driver = new EdgeDriver();
}
but i have this exception: Could…

CCC
- 170
- 1
- 15
0
votes
1 answer
Selenium - When browser Driver version will get released
When can we get the selenium driver versions after the browser upgrade.
For Chrome driver I got info(https://chromedriver.chromium.org/downloads/version-selection) - Before a new major version of Chrome goes to Beta, a matching version of…

Dinesh
- 61
- 1
- 1
- 11
0
votes
1 answer
How to replace Microsoft Edge Legacy with Edge Chromium?
I am facing issue while launching my selenium script for edge browser.
I followed below steps-
Pre-Condition- I had Edge Legacy-Version 40 already installed on my system
1. Installed Edge Chromium Version LATEST-83...
2. Ran the automation…

Shreya
- 1
- 2
0
votes
1 answer
Add latest Microsoft Edge (Win10) browser to Selenium Grid
Tried by adding the below code.
"capabilities": [
{
"browserName": "MicrosoftEdge",
"platform": "WIN10",
"maxInstances": 1
},
]
and passed it to command line
start java…
0
votes
1 answer
EdgeDriver (v81) no longer supports ability to pass in DriverService as a parameter
Since Edge has been upgraded to v80, it has introduced a "breaking change" (https://learn.microsoft.com/en-us/microsoft-edge/webdriver-chromium?tabs=c-sharp) to our automation. This is documented by Microsoft in the attached link. Ideally I would…

Mark Loughery
- 1
- 2
0
votes
1 answer
Can anyone help me to get a value from .XML
I've executed my code in selenium-java and i need a value of Identifiers(2nd line, not the 4th one) from .XML which is opened in MS edge browser.
My XML:
18753

Omi
- 1
- 1
0
votes
0 answers
C# Programmatically opening a cmd.exe and writing a command into console when UseShellExecute is true
I've tried the snippet of code:
Process p = new Process();
ProcessStartInfo info = new ProcessStartInfo("cmd.exe");
info.UseShellExecute = true;
info.Verb = "runas";
…

vfirma
- 330
- 1
- 5
- 15
0
votes
1 answer
Microsoft Edge WebDriver- Unable to use default app data profile for Automation - Edge Ver 80
I have to use existing user login session, we will require EDGE user profile, as we observed EDGE driver doesn't use the existing user data profile it is creating a new profile every time
EDGE Default Profile…

user12974983
- 13
- 1
- 3