Skip to content

Commit 04c9dfc

Browse files
committed
[dotnet] Pushing missing changes to method names in dotnet SM
1 parent c4a6317 commit 04c9dfc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dotnet/src/webdriver/DriverFinder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public DriverFinder(DriverOptions options)
4949
/// <returns>
5050
/// The full browser path
5151
/// </returns>
52-
public string BrowserPath()
52+
public string GetBrowserPath()
5353
{
5454
return BinaryPaths()[BrowserPathKey];
5555
}
@@ -60,14 +60,14 @@ public string BrowserPath()
6060
/// <returns>
6161
/// The full driver path
6262
/// </returns>
63-
public string DriverPath()
63+
public string GetDriverPath()
6464
{
6565
return BinaryPaths()[DriverPathKey];
6666
}
6767

6868
public bool HasBrowserPath()
6969
{
70-
return !string.IsNullOrWhiteSpace(BrowserPath());
70+
return !string.IsNullOrWhiteSpace(GetBrowserPath());
7171
}
7272

7373
/// <summary>

dotnet/src/webdriver/DriverService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ public void Start()
275275
}
276276
else
277277
{
278-
this.driverServiceProcess.StartInfo.FileName = new DriverFinder(this.GetDefaultDriverOptions()).DriverPath();
278+
this.driverServiceProcess.StartInfo.FileName = new DriverFinder(this.GetDefaultDriverOptions()).GetDriverPath();
279279
}
280280

281281
this.driverServiceProcess.StartInfo.Arguments = this.CommandLineArguments;

0 commit comments

Comments
 (0)