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

The method attachToEdgeChrome() is undefined for the type InternetExplorerOptions using selenium-server-4.0.0-alpha-2

I want test the IE mode for Edge browser with Selenium. I found the solution on the MS site here: https://learn.microsoft.com/en-us/microsoft-edge/webdriver-chromium/ie-mode?tabs=java I am using the following code as given in the above link: import…
0
votes
1 answer

MS Edge Driver as separate conf file in wdio

Can someone, please, assist, in following: Created separate conf files for Chrome & Firefox on webdriver.io (latest version 7.19.3), but could not acchive to create (also separate) config file for Microsoft Edge driver, on Widows 10 machine. At the…
0
votes
1 answer

Selenium options don't work with headless mode

I'm using ASP.NET Core 6 with Selenium 4.1. When I run my code regularly, it works fine, but when I set it to headless, I don't think any of the options work including the Guest, inPrivate, or incognito mode because I keep getting 2FA prompts as if…
0
votes
1 answer

Automation error when opening Edge using SeleniumBasic in VBA

Edge won't open. Similar issue as reported by vasilythecat but I get an automation error message at: obj.Start "edge", "" These are the steps I took. I downloaded and installed Selenium Basic from…
Ross
  • 11
  • 3
0
votes
0 answers

How to create Jar File dependent on exe? Selenium Web Driver

I have written a Java selenium web automation code and I want to create a JAR for the same java code. Initially, I have hardcoded web-driver dependency like this: System.setProperty("webdriver.edge.driver",…
0
votes
2 answers

Selenium edge driver cannot go to extension page

I'm using Selenium 4 to do some automation and currently we just use it on chrome driver. I'm adding support for edge and got to that problem. (Using C#) On chrome I can go to a extension settings page by…
0
votes
0 answers

Selenium click element & Action drag and drop is not working in edge browser using java

Selenium click element & Action drag and drop is not working in edge browser using java where as same code base works with Chrome & firefox browser without any issue . Facing issue only with edge browser. Sample Code Snippet : Driver Setup : …
0
votes
1 answer

Automating CEF desktop client with EdgeDriver - Error : unrecognized MSEdge version: Chrome/92.0.4515.107'

I am running a CEF based desktop application on a remote debugging port using command prompt as below - "C:\Program Files (x86)\\.exe" --remote-debugging-port=5553 The application is getting launched and I am able to…
Pri645
  • 85
  • 1
  • 2
  • 10
0
votes
0 answers

How to implement the Edgewebdriver with "AddArguments" on my WebDriverFactory?

I need to run my testes on Microsoft Edge and Opera. But I don't find anywhere how to do that. I have the driver for the both browsers and know where I can put then to run, but the configuration it's not so easy than Firefox and Chrome as I already…
0
votes
0 answers

Select certificate for authentication pop up handling in selenium java with edge browser

Tried to login to an application where SSO login is enabled. Once after click on the SSO login button its asking to select the User for login in a pop up. Browser used is Edge(91-version). Tried to handle with alert class, driver options but didn't…
0
votes
1 answer

setExperimentalOptions for Edge browser

I was able to change the download location in Chrome but when I do it for Edge browser the method setExperimentalOptions is not present for EdgeOptions. I am using Selenium 3.141.59 Java. String location = System.getProperty("user.dir") +…
0
votes
2 answers

Check with Selenium if browser is open

I'm using C# / Selenium 3 and the Microsoft Chromium Edge Webdriver to scrape a web page and then deliver data to another application. I need to check if the user has closed the web browser. Is there a quick way of doing this? I came up with the…
making
  • 408
  • 6
  • 21
0
votes
1 answer

Unable to launch Edge Browser using Selenium Python EdgeOption

Tried the following ways. First approach : from selenium import webdriver from msedge.selenium_tools import EdgeOptions from msedge.selenium_tools import Edge options = EdgeOptions() options.use_chromium = True driver = Edge(options =…
0
votes
1 answer

What are Selenium edgedriver Send Keys for select all and copy?

Very new to Selenium, in fact this is the first auxiliary library I am using in VBA. I'm using the Web Driver for Microsoft Edge, and I'm having trouble figuring out how to use send keys, mainly to select the entire contents of the page and then…
0
votes
1 answer

Selenium EdgeDriver geolocation and other additional options without using selenium 4

This work is for a large company that's currently using selenium 3 drivers for chrome, ff, edge, etc. We are just now adding coverage for edge selenium testing and while doing so I have noticed that some of the additional arguments that can be…
Sachin
  • 257
  • 1
  • 3
  • 15