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
getWindowHandles not working properly with latest edge browser version
I am working on an application which supports only Edge Browser.
The login functionality works as follows -
On the login screen, when username and password values are provided and login button is clicked, a new browser window opens with an active…

Akshay Kane
- 161
- 1
- 2
- 4
0
votes
1 answer
Getting EdgeDriver Version in Selenium C#
I'm trying to update my "chromedriver.exe" and my "msedgedriver.exe" when I start my program automatically. I am able to download both exes with their correct versions, but I need to acces to it's versions from my code and I'm having some trouble…
0
votes
1 answer
driver.switchTo().alert(); is throwing null pointer exception
facing it Only with edge 106,107,108 and the latest driver.
and I'm using selenium 3.4.0
NullPointerException Stack Trace:
java.lang.NullPointerException at org.openqa.selenium.remote.RemoteWebDriver.getWindowHandle(RemoteWebDriver.java:554)
at…

Durgesh patidar
- 21
- 5
0
votes
0 answers
How to switch focus with Selenium to a new pop-up Window with the SAME handle?
I am trying to change my driver's focus to the new window that pops up as a result of clicking a link. The only problem is that both the parent window and the pop-up window have the same handle - for example - the title of both is "

Lukja.E
- 9
- 2
0
votes
1 answer
Selenium Disable Edge PDF Viewer in new tab
I want to disable PDF opening in new tab and instead download the PDF while executing the selenium scripts on Edge browser.
For Chrome, I have the below chrome options and it works fine.
…

RSF
- 11
- 2
0
votes
0 answers
Why Test method is not executing?
I am using selenium 3.141.59 to automate gmail application as an example in Edge in IE Mode.
If I use Selenium 4.0.0 or greater , PageFactory.initElements doesn't support .
I have to execute script for below environment :
Windows 11 (64 bit)
Edge…

Prashant
- 1,351
- 3
- 20
- 32
0
votes
0 answers
How to config and open Edge browser in headless mode
how to set up codeception headless mode for EDGE
config is set like this (just like headless mode for Chrome, where headless mode works), but tests still run in nonHeadless mode in EDGE
modules:
enabled:
- WebDriver:
config:
…

Dexter
- 1
- 1
0
votes
0 answers
mesedgedriver docker file host OS version
I am trying to run the following dockerfile: https://hub.docker.com/_/microsoft-msedge-msedgedriver?tab=description
I attempted to run this on a linux-host, it told me it can't run a windows image. I then attempted to run it on a 2022 Windows…

user1839601
- 119
- 1
- 9
0
votes
1 answer
"DevToolsActivePort file doesn't exist" with ChromiumEdge
I've seen a lot of iterations of this question, but every single one of them were using Chrome. I'm trying to use Selenium to automate for work, but when I try to run my code on my company computer it fails, even though it was working perfectly on…

ricky
- 21
- 5
0
votes
2 answers
Python Selenium: Using arguments "user-data-dir=" and "profile-dir=" seemingly switches user but throws error and refuses further driver arguments
selenium==4.2.0
webdriver-manager==3.8.1
Description:
My task requires using specific edge profiles when displaying webdrivers in python/selenium to keep settings between sessions, ideally using the newer from selenium.webdriver.edge.options import…

snoofalus
- 1
- 1
0
votes
0 answers
ElementClickInterceptedError: element click intercepted. Selenium Javascript Chromedriver
I am having problems with clicking an element in a dropdown. What i have to do is:
Open https://pastebin.com
paste "Hello from WebDriver"
Set Paste Expiration to "10 Minutes"
Set Paste Title to "helloweb"
However, after opening the dropdown some…

carol denvers
- 1
- 1
0
votes
2 answers
Changing download directory for edge using Python selenium
I am able to change the download directory for Chrome using Python Selenium as follows:
DownloadPath = (f'C:\\Users\\{EmplyID}\\Desktop\\General Orders\\{Newfolder}')
chromeOptions = Options()
chromeOptions.add_experimental_option("prefs",…

Vishal
- 1
- 1
0
votes
0 answers
How do i turn off the remote debugging in MS EDGE in Selenium JAVA?
the below code is able to launch EDGE but is saying to turn off remote debugger during execution.
I added the argument to disable the remote debugger (disable-features=msEdgeDevToolsWdpRemoteDebugging), but somehow when i open edge://version , there…

Joseph Bonaobra
- 11
- 3
0
votes
0 answers
ERROR:file_io_win.cc(181)] CreateFile C:\Users\xxxxx\AppData\Local\Temp\scoped_dir8672_746580622\Crashpad\settings.dat
Getting this issue while executing the automation on Edge using Selenium. We are creating machines using docker. Getting below error
ERROR:file_io_win.cc(181)] CreateFile…

Gourav Bhatia
- 186
- 1
- 11
0
votes
1 answer
How to handle open file popup using selenium
When I navigate to certain URL, the browser prompts me to open a file:
How can I select "Open" when controlling the browser via selenium? Can I set some options to the webdriver to automatically open files? I am using Microsoft Edge.
My current…

juhat
- 342
- 2
- 10