Skip to content

Commit 4f417e9

Browse files
committed
Updating .NET bindings to find geckodriver.exe for marionette instead of wires.exe
1 parent 212a5e7 commit 4f417e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dotnet/src/webdriver/Firefox/FirefoxDriverService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ namespace OpenQA.Selenium.Firefox
2929
/// </summary>
3030
public sealed class FirefoxDriverService : DriverService
3131
{
32-
private const string FirefoxDriverServiceFileName = "wires.exe";
33-
private static readonly Uri FirefoxDriverDownloadUrl = new Uri("https://github.com/jgraham/wires/releases");
32+
private const string FirefoxDriverServiceFileName = "geckodriver.exe";
33+
private static readonly Uri FirefoxDriverDownloadUrl = new Uri("https://github.com/mozilla/geckodriver/releases");
3434
private string browserBinaryPath = @"C:\Program Files (x86)\Nightly\firefox.exe";
3535
private int browserCommunicationPort = -1;
3636

0 commit comments

Comments
 (0)