Questions tagged [selenium-edgedriver]

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

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 =…
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");…
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…
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…
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…
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…
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…
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…
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
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…