Skip to content

Commit

Permalink
Updating .NET bindings to find geckodriver.exe for marionette instead…
Browse files Browse the repository at this point in the history
… of wires.exe
  • Loading branch information
jimevans committed Jun 14, 2016
1 parent 212a5e7 commit 4f417e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dotnet/src/webdriver/Firefox/FirefoxDriverService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ namespace OpenQA.Selenium.Firefox
/// </summary>
public sealed class FirefoxDriverService : DriverService
{
private const string FirefoxDriverServiceFileName = "wires.exe";
private static readonly Uri FirefoxDriverDownloadUrl = new Uri("https://github.com/jgraham/wires/releases");
private const string FirefoxDriverServiceFileName = "geckodriver.exe";
private static readonly Uri FirefoxDriverDownloadUrl = new Uri("https://github.com/mozilla/geckodriver/releases");
private string browserBinaryPath = @"C:\Program Files (x86)\Nightly\firefox.exe";
private int browserCommunicationPort = -1;

Expand Down

0 comments on commit 4f417e9

Please sign in to comment.