You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some endpoints will support the WebDriver protocol and others the Selenium legacy JSON protocol. WebDriver instances should be able to report which one of these they support, so that Session and Element can have conditional logic where needed.
publicenumWireProtocol{/// The Selenium legacy wire protocol,/// as described at https://www.selenium.dev/documentation/legacy/json_wire_protocolcase SeleniumLegacy
/// The W3C-standard WebDriver protocol,/// as described at https://www.w3.org/TR/webdriver1 & https://www.w3.org/TR/webdriver2case W3CWebDriver(version:Int)}
The text was updated successfully, but these errors were encountered:
Some endpoints will support the WebDriver protocol and others the Selenium legacy JSON protocol.
WebDriver
instances should be able to report which one of these they support, so thatSession
andElement
can have conditional logic where needed.The text was updated successfully, but these errors were encountered: