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 882e13a commit c10c54dCopy full SHA for c10c54d
dotnet/src/webdriver/BiDi/Modules/Script/LocalValue.cs
@@ -141,6 +141,12 @@ public BigInt(BigInteger value)
141
{
142
Value = value;
143
}
144
+
145
+ [JsonConstructor]
146
+ internal BigInt(string valueAsString)
147
+ {
148
+ Value = BigInteger.Parse(valueAsString);
149
+ }
150
151
152
public record Boolean(bool Value) : PrimitiveProtocolLocalValue;
0 commit comments