Selenium JSON Wire vs Webdriver Wire Protocol

I saw that it was deprecated, but - this is a new implementation. JSON Wire Protocol Webdriver Wire Protocol

I want to understand what changes will be implemented in and how does it differ from ? Webdriver Wire Protocol JSON Wire Protocol

+4
source share
1 answer

The following are naming conventions:

JSON Wire Protocol WebDriver Wire Protocol
version browserVersion
platform platformName
noProxy noproxy
UnknownCommand unknown command
NoSuchFrame no such frame
NoSuchElement no such element
StaleElementReference stale element reference
ElementIsNotSelectable element not selectable
JavaScriptError javascript error
Timeout timeout
NoSuchWindow no such window
InvalidCookieDomain invalid cookie domain
ScriptTimeout script timeout
SessionNotCreatedException session not created
MoveTargetOutOfBounds move target out of bounds
NoAlertOpenError no such alert
InvalidElementCoordinates invalid coordinates
stackTrace stacktrace

Error codes and data structures have also changed. See References for Implementation Details.

References

+5
source

All Articles