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 c7ac3b9 commit c73fd33Copy full SHA for c73fd33
dotnet/src/webdriver/BiDi/Modules/Script/LocalValue.cs
@@ -69,6 +69,9 @@ public static LocalValue ConvertFrom(object? value)
69
case double d:
70
return new NumberLocalValue(d);
71
72
+ case BigInteger bigInt:
73
+ return new BigIntLocalValue(bigInt.ToString());
74
+
75
case string str:
76
return new StringLocalValue(str);
77
0 commit comments