Skip to content

Commit

Permalink
[dotnet] Pushing missing changes to method names in dotnet SM
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Apr 23, 2024
1 parent c4a6317 commit 04c9dfc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dotnet/src/webdriver/DriverFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public DriverFinder(DriverOptions options)
/// <returns>
/// The full browser path
/// </returns>
public string BrowserPath()
public string GetBrowserPath()
{
return BinaryPaths()[BrowserPathKey];
}
Expand All @@ -60,14 +60,14 @@ public string BrowserPath()
/// <returns>
/// The full driver path
/// </returns>
public string DriverPath()
public string GetDriverPath()
{
return BinaryPaths()[DriverPathKey];
}

public bool HasBrowserPath()
{
return !string.IsNullOrWhiteSpace(BrowserPath());
return !string.IsNullOrWhiteSpace(GetBrowserPath());
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/webdriver/DriverService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public void Start()
}
else
{
this.driverServiceProcess.StartInfo.FileName = new DriverFinder(this.GetDefaultDriverOptions()).DriverPath();
this.driverServiceProcess.StartInfo.FileName = new DriverFinder(this.GetDefaultDriverOptions()).GetDriverPath();
}

this.driverServiceProcess.StartInfo.Arguments = this.CommandLineArguments;
Expand Down

0 comments on commit 04c9dfc

Please sign in to comment.