Questions tagged [edgedriver]

8 questions
4
votes
2 answers

Selenium Edge Browser not launching

I am using Selenium 4.6.0 from selenium import webdriver driver = webdriver.Edge() driver.maximize_window I am Receiving this [13928:7924:0414/232444.891:ERROR:chrome_browser_cloud_management_controller.cc(162)] Cloud management controller…
Student
  • 41
  • 1
  • 3
0
votes
2 answers

Selenium Driver issue - Unable to run the script

I'm unable to run the selenium script after providing the driver path. The installed edge browser version - Microsoft Edge Version 115.0.1901.188 (Official build) (64-bit) enter image description here Driver installed into my Windows 10 64 bit…
0
votes
0 answers

Selenium Edge error : selenium.common.exceptions.WebDriverException: Message: unknown error: Failed to create Microsoft Edge process

from selenium import webdriver driver = webdriver.Edge("C:\_Dev\PythonWorkspace\msedgedriver.exe") Before I updated the selenium and edge browser, It worked very well. I used to work with that code. but, after updating the selenium and edge, It…
0
votes
0 answers

EdgeWebDriver Forbidden

For those who had problems with the ChromDriver with Selenium from an error and only opened the browser but the page driver.get(); it didn't work. This is the solution for Edge browser: "package selenium; import…
0
votes
2 answers

Python 'NoneType' object has no attribute 'get' on a global variable

I don't understand why I cannot set a global variable driver in Selenium I get this error in the Load() function on driver Exception has occurred: AttributeError 'NoneType' object has no attribute 'get' File "D:\Code\edge_script.py", line xx, in…
Mich
  • 3,188
  • 4
  • 37
  • 85
0
votes
1 answer

Get Chromium edge driver of version that matches the version of Edge browser installed

I am writing tests using WebdriverIO with NodeJs. I am trying to get edge driver based on the version of Edge browser installed. Details: I have installed the service wdio-chromedriver-service. It is mentioned that with the environment variable…
0
votes
1 answer

NoSuchElementException using Selenium Edge driver, c# within CEF app

I am testing a CEF app which is already launched so I am trying to attach to it using the DebuggerAddress option. Browser: Microsoft Edge 107.0.1418.24 Driver: msedgedriver 107.0.1418.24 EdgeOptions used: EdgeOptions edgeOptions = new…
0
votes
1 answer

Getting past MFA with Edgedriver in Selenium, when Edge Browser does not ask for authentication

I am automating some tasks at work, and I need to use Selenium to get data that is updated on an internal website. I can open the website and view this data in Edge Browser from my account without any kind of authentication, However, when opening…
Mich
  • 3,188
  • 4
  • 37
  • 85