We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbb1c73 commit 2d77838Copy full SHA for 2d77838
dotnet/src/webdriver/BiDi/Modules/Script/Target.cs
@@ -25,9 +25,9 @@ namespace OpenQA.Selenium.BiDi.Modules.Script;
25
[JsonDerivedType(typeof(ContextTarget))]
26
public abstract record Target;
27
28
-public record RealmTarget([property: JsonPropertyName("realm")] Realm Target) : Target;
+public record RealmTarget(Realm Realm) : Target;
29
30
-public record ContextTarget([property: JsonPropertyName("context")] BrowsingContext.BrowsingContext Target) : Target
+public record ContextTarget(BrowsingContext.BrowsingContext Context) : Target
31
{
32
public string? Sandbox { get; set; }
33
}
0 commit comments