[py] Fix vendor prefix for Edge browser by cgoldberg · Pull Request #16078 · SeleniumHQ/selenium

User description

🔗 Related Issues

Fixes #16077

💥 What does this PR do?

This PR changes the vendor prefix for Edge to ms (from goog) so webdriver.Remote methods work correctly with Edge.

🔄 Types of changes

  • Bug fix (backwards compatible)

PR Type

Bug fix


Description

  • Fix vendor prefix for Edge browser from goog to ms

  • Enables proper functionality of webdriver.Remote methods with Edge


Diagram Walkthrough

flowchart LR
  A["Edge Remote Connection"] --> B["Vendor Prefix Change"]
  B --> C["goog → ms"]
  C --> D["Fixed Remote Methods"]
Loading

File Walkthrough

Relevant files
Bug fix
remote_connection.py
Update vendor prefix for Edge                                                       

py/selenium/webdriver/edge/remote_connection.py

  • Changed vendor prefix parameter from "goog" to "ms" in
    EdgeRemoteConnection constructor
+1/-1