183 questions
2 votes
1 answer
317 views
Why does ExecuteCdpCommand not work with WebDriver
We have a regression suite which we run on Chrome with code created in Visual Studio/C# and Selenium. Part of the startup code is shown below protected static ChromeDriver? Driver { get; set; } = null;...
0 votes
0 answers
31 views
Added cursor only displayed when moving to button elements
I'm following this example in terms of adding a cursor to the captured video when running my test: Visualize / Show mouse cursor position in selenium 2 tests (for example PHPUnit Webdriver) I've ...
0 votes
1 answer
235 views
Selenium video container not capturing video
I'm attempting to record a video from a Selenium test and so far, it's not working. I can see my test progressing using NoVNC on port 7900 Test completes with expected assertions in VSCode's terminal ...
2 votes
0 answers
113 views
Disabling console log messages from Edge webdriver in selenium-wire
I've been making a cli application that involves opening the Edge browser and getting some request headers, and for that I've been using the selenium-wire library. The problem is that, since it's a ...
0 votes
0 answers
53 views
I would like to download file in excel with selenium edge web driver in specific custom folder in java selenium
The excel sheet should download in the custom directory, but it downloads to default(Default Downlaods) folder. HashMap<String, Object> edgePrefs = new HashMap<>(); edgePrefs.put("...
0 votes
0 answers
42 views
Edge driver older version required
I need edge driver with version 86.0.622.38 Not able to find this edge driver version 86.0.622.38 on the official site. Also, tried searching on different sites. Not able to find this edge driver ...
0 votes
0 answers
26 views
Selenium on Edge with IE Mode(IE Driver) opening a popup window on IE browser which causes 'system detected an overrun of a stack based buffer' error
Selenium on Edge with IE Mode(IE Driver) opening a popup window on IE browser which causes 'system detected an overrun of a stack based buffer' error Selenium opens Edge Browser in IE mode using IE ...
0 votes
1 answer
555 views
Unable to navigate to any URL in Microsoft Edge using Selenium in Windows 11
I'm getting this error: selenium.SessionNotCreatedException: could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist. Code: public class ...
0 votes
1 answer
78 views
NoSuchElementException error of the Selenium WebDriver
I'm having trouble with my Selenium WebDriver project in VB.NET. I'm currently trying to simulate human operation on playing web video process. Just trying to explore how the Selenium WebDriver can ...
0 votes
1 answer
128 views
Selenium WebDriver Failing to Navigate to URL in New Tab Body
I'm having trouble with my Selenium WebDriver project in VB.NET. I'm trying to open a new tab in Edge and navigate to a specific URL, but the tab remains blank. Here's the relevant code snippet: ...
0 votes
1 answer
326 views
Selenium edge driver cannot go to extension page using codes
I'm trying to use Selenium 4 to do some automation on extension of web browser. Currently, I just use it on Microsoft Edge driver. I found that I was unable to open any extension of Edge, Firefox or ...
0 votes
1 answer
690 views
TimeoutError The driver failed to open the listening port 127.0.0.1:54901 whithin 10s
I am trying to open the edge browser with my VBA code, and I can't seem to make it work, the error I get is the one in the title: "TimeoutError The driver failed to open the listening port 127.0....
3 votes
1 answer
5k views
1SessionNotCreatedException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure
Could not launch the browser (Chrome, Edge, etc) I have latest build of Chrome : 126, Selenium : 4.22.0, java.version: '22.0.1'. Exception in thread "main" org.openqa.selenium....
0 votes
1 answer
181 views
Using Edge Webdriver, Cannot use "--guest" and "download.default_directory" options at the same time
I'm creating an Edge Webdriver instance with these two options: options = webdriver.EdgeOptions() options.add_argument('--guest') prefs = {"download.default_directory": temp_path,...
-1 votes
1 answer
72 views
what do I do if my code is printing only one dictionary when i have several list after scraping a website using selenium
This is my code from selenium import webdriver from selenium.webdriver.common.by import By url ='https://open.spotify.com/playlist/37i9dQZF1DXbTop77dnX35' driver = webdriver.Edge() driver.get(url) ...