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 da351d4 commit 8636b15Copy full SHA for 8636b15
dotnet/src/webdriver/SeleniumManager.cs
@@ -77,6 +77,11 @@ public static class SeleniumManager
77
}
78
#endif
79
80
+ if (platform is null)
81
+ {
82
+ throw new PlatformNotSupportedException($"Selenium Manager doesn't support your runtime platform: {RuntimeInformation.OSDescription}");
83
+ }
84
+
85
var currentDirectory = AppContext.BaseDirectory;
86
87
binaryFullPath = platform switch
0 commit comments