-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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] Earlier preview feedback gathering #14530
Comments
@nvborisenko, thank you for creating this issue. We will troubleshoot it as soon as we can. Info for maintainersTriage this issue by using labels.
If information is missing, add a helpful comment and then
If the issue is a question, add the
If the issue is valid but there is no time to troubleshoot it, consider adding the
If the issue requires changes or fixes from an external project (e.g., ChromeDriver, GeckoDriver, MSEdgeDriver, W3C),
add the applicable
After troubleshooting the issue, please add the Thank you! |
Wanted to get hands on the new BiDi interface, but struggled due to the lack of documentation starting from getting the BiDi object: when should driver.AsBiDiAsync() and driver.AsBidiContextAsync() be used? Would be great to have similar samples to those that already exist for CDP I understand that it might sound more like complaint rather than a feedback, but it's safe to assume I won't be the only one who will have similar questions when tinkering with BiDI |
Sorry for that, it even may a subject for change. This is why we are collecting any feedback. Returning back to the question: driver.AsBiDiAsync(); // returns an object who is on top of all "tabs" driver.AsBidiContextAsync(); // returns the current "tab" We are still lack of documentation, construction of API is a priority. And then docs will be in place. |
This is addressed and will be a part of v4.26, looking forward new feedbacks. |
For the [JsonPolymorphic(TypeDiscriminatorPropertyName = "type")]
[JsonDerivedType(typeof(Box), "box")]
[JsonDerivedType(typeof(Element), "element")]
public abstract record ClipRectangle
{
internal record Box(double X, double Y, double Width, double Height) : ClipRectangle;
internal record Element([property: JsonPropertyName("element")] Script.SharedReference SharedReference) : ClipRectangle;
public static ClipRectangle FromBox(double x, double y, double Width, double Height)
{
return new Box(x, y, Width, Height);
}
public static ClipRectangle FromElement(Script.SharedReference element)
{
return new Element(element);
}
} And the users would just call these methods, and not have to deal with the potential subtypes: [Test]
public async Task CanCaptureScreenshotOfViewport()
{
var screenshot = await context.CaptureScreenshotAsync(new()
{
Origin = Origin.Viewport,
Clip = ClipRectangle.FromBox(5, 5, 10, 10)
});
Assert.That(screenshot, Is.Not.Null);
Assert.That(screenshot.Data, Is.Not.Empty);
} This way, user ergonomics is preserved (it's an ideomatic style to have |
Right, I also considered static factory as a primary way to instantiate nested objects. Let's compare.. Today: record Box(double X, double Y, double Width, double Height) : ClipRectangle; Tomorrow: record Box(double X, double Y, double Width, double Height) : ClipRectangle
{
public int? Scale { get; set; }
} In case of var box = new ClipRectangle.Box(5, 5, 10, 10) { Scale = 90 }; In case of var box = ClipRectangle.CreateBox(5, 5, 10, 10) with { Scale = 90 }; Where There are so many sugar we can apply, but we should keep in mind that it is low-level API, it should be straightforward, simple, reliable. Any sugar needs effort, let's stay this greenfield for others. For others, who will write |
In this specific example I would add a new static method: public static ClipRectangle CreateBox(double x, double y, double width, double height, int? scale) => new Box(x, y, width, height, scale);
public static ClipRectangle CreateBox(double x, double y, double width, double height) => new Box(x, y, width, height, Scale: null); or add an optional parameter to the existing method (binary breaking change, shouldn't be a real issue) public static ClipRectangle CreateBox(double x, double y, double width, double height, int? scale = null) => new Box(x, y, width, height, scale);
I agree the Both solutions work, the question is mostly of taste (and how stable the BiDi API is going to be). I think the static methods are more discoverable than nested classes, but there's nothing wrong with the nested type approach. |
Rejected, as you already mentioned |
Feature and motivation
Here we are going to gather everything related to BiDi implementation in .NET and improve it as soon as possible despite on any potential breaking changes.
1. Discriminated unions ✅ v4.26
We have a lot of classes what are inherited from a base. The basic example:
ClipRecatange
is used like:And it is not clear what exactly I can put as arguments. I see base class as an argument, but I don't see what available options I can provide. We can add factory:
But it requires to write so many boilerplate code from selenium team. Don't forget about optional parameters (which requires new class definition). So many code.
Solution
Use nested classes for all discriminated classes.
So user will be able to:
For user it seems there is no big diff, but for selenium team it is HUGE diff. And when https://github.com/dotnet/csharplang/blob/main/proposals/TypeUnions.md will be in place, it will everybody make happy: selenium team to write even less code, and user probably will write:
var screenshot = await context.CaptureScreenshotAsync(new Box(5, 5, 10, 10));
2. Don't mimic `BiDi` instance as `BrowsingContext` ✅ v4.26
We have helper methods in `BiDi` class which actually forward to `BrowsingContext` module. Example: ```csharp await bidi.CreateContextAsync(...); ```Stop doing it and just expose modules. So it would be better:
3. Result object as Enumerable ✅ v4.26
Some commands return result, which seems to be a list of items.
Where
result
is:So
result
isGetCookiesResult
class, and it would be great if it behaves as enumerable.Solution
Implement
IReadOnlyList<T>
. So user is able to:And it will be also good to rename
result
class toCookiesList
(orCookiesReadOnlyList
orCookiesCollection
?)4.
driver.AsBiDiAsync()
ordriver.AsBiDiContextAsync()
- only one should aliveWe have 2 entry points into BiDi world, the both are useful. The problem is that
driver.AsBidiContextAsync()
holds underlying bidi connection, which cannot be disposed. And moreover, should not be disposed. So seems, only onedriver.AsBiDiAsync()
should be as single entry point.Then the question is: if user has
bidi
instance, then how he can get an access to currentBrowsingContext
instance?Solution
Keep only one entry point:
driver.AsBiDiAsync()
. And provide a way how to instantiate an instance ofBrowsingContext
.Given that this is low-level API, I would like to not introduce any kind of "helper" methods.
One more elegant way is:
But it hides
DisposeAsync()
for underlying bidi connection. If bidi connection will be a part of WebDriver itself, then it is OK - user is not required to manage lifecycle of the connection. Even if user disposes underlying bidi connection, we can throwAlreadyDisposed
exception for further commands. Not ideal.Preferable
My current understanding, which is safe:
5.
System.Uri
vsstring
We are trying to be strongly-typed. Seems
System.Uri
is a good candidate to deserialize/serialize. Like hereurl
can be interpretated asSystem.Uri
type.It will allow us to be closer to .net ecosystem. Performance?.. - no, not in this case.
The text was updated successfully, but these errors were encountered: