Skip to content

Commit

Permalink
[dotnet] add Selenium Manager support for Unix
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Nov 3, 2022
1 parent 7be7e2e commit 4ce2649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/SeleniumManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private static string Binary
{
binary = "selenium-manager/windows/selenium-manager.exe";
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux) || RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
binary = "selenium-manager/linux/selenium-manager";
}
Expand Down

0 comments on commit 4ce2649

Please sign in to comment.