-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[dotnet] [bidi] Migrate RemoteValue to separate types #15426
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
PR is most easily reviewed with whitespace off: https://github.com/SeleniumHQ/selenium/pull/15426/files?w=1 |
dotnet/src/webdriver/BiDi/Communication/Json/BiDiJsonSerializerContext.cs
Outdated
Show resolved
Hide resolved
dotnet/src/webdriver/BiDi/Communication/Json/BiDiJsonSerializerContext.cs
Outdated
Show resolved
Hide resolved
Co-authored-by: Nikolay Borisenko <[email protected]>
User description
Description
Migrate RemoteValue to separate types
Also adds the
BigInt
remote typeMotivation and Context
Contributes to #15407
Types of changes
Checklist
PR Type
Enhancement, Tests
Description
Replaced nested DTO types with separate, standalone types.
Updated serialization and deserialization logic for new types.
Refactored tests to align with new type structure.
Added support for
BigInt
type in remote values.Changes walkthrough 📝
6 files
Updated JSON serialization for new RemoteValue types
Updated node deserialization to use new RemoteNodeValue
Refactored RemoteValue deserialization for new types
Updated LocateNodesResult to use new RemoteNodeValue
Refactored NodeProperties to use new RemoteNodeValue
Replaced nested RemoteValue types with standalone types
5 files
Updated tests to use RemoteStringValue
Refactored function call tests for new RemoteValue types
Updated RemoteValue tests for new type structure
Refactored evaluation tests for new RemoteValue types
Updated script command tests for new RemoteValue types