Skip to content
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

[🚀 Feature]: [dotnet] [bidi] Don't use nested DTO types (!) #15407

Open
nvborisenko opened this issue Mar 12, 2025 · 6 comments
Open

[🚀 Feature]: [dotnet] [bidi] Don't use nested DTO types (!) #15407

nvborisenko opened this issue Mar 12, 2025 · 6 comments
Labels
C-dotnet .NET Bindings I-enhancement Something could be better

Comments

@nvborisenko
Copy link
Member

Feature and motivation

This is a continuation of #14530 point 1: "Discriminated unions". I proposed and implemented Local.Css nested type instead of CssLocator type. My last comment in that already resolved issue was:

I feel new CssLocator("div"); is better, we can make it before v5 if we have strong arguments (types discovery is a good argument).

I was wrong, and now I come with arguments. Actually only one argument. Nested type reserves its name in the parent. Which means we cannot add more members with the same name.

Use cases:

  • Static factory: when Selenium Team will have capacity to add more useful methods like Locator.Css("div") it will not be possible, because Css is already defined in Locator class.
  • Static singleton: In Script module we have LocalValue.Null class. This is great candidate to be singleton. But we cannot do it because Null name is already reserved by nested type.

Usage example

Before:

new Locator.Css("div");

After:

new CssLocator("div");

And all types with similar pattern.

@nvborisenko nvborisenko added I-enhancement Something could be better A-needs-triaging A Selenium member will evaluate this soon! labels Mar 12, 2025
Copy link

@nvborisenko, thank you for creating this issue. We will troubleshoot it as soon as we can.


Info for maintainers

Triage this issue by using labels.

If information is missing, add a helpful comment and then I-issue-template label.

If the issue is a question, add the I-question label.

If the issue is valid but there is no time to troubleshoot it, consider adding the help wanted label.

If the issue requires changes or fixes from an external project (e.g., ChromeDriver, GeckoDriver, MSEdgeDriver, W3C), add the applicable G-* label, and it will provide the correct link and auto-close the issue.

After troubleshooting the issue, please add the R-awaiting answer label.

Thank you!

@nvborisenko
Copy link
Member Author

Everything is addressed? We should double check.

@nvborisenko
Copy link
Member Author

nvborisenko commented Mar 17, 2025

Seems abstract records are addressed. Now it is time to analyze how we use other nested types.

@nvborisenko
Copy link
Member Author

@RenderMichael I have prepared PRs, all of them are simple. #15493 requires attention.

@RenderMichael
Copy link
Contributor

Simple changes all around, all approved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-dotnet .NET Bindings I-enhancement Something could be better
Projects
None yet
Development

No branches or pull requests

2 participants