File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public DriverFinder(DriverOptions options)
49
49
/// <returns>
50
50
/// The full browser path
51
51
/// </returns>
52
- public string BrowserPath ( )
52
+ public string GetBrowserPath ( )
53
53
{
54
54
return BinaryPaths ( ) [ BrowserPathKey ] ;
55
55
}
@@ -60,14 +60,14 @@ public string BrowserPath()
60
60
/// <returns>
61
61
/// The full driver path
62
62
/// </returns>
63
- public string DriverPath ( )
63
+ public string GetDriverPath ( )
64
64
{
65
65
return BinaryPaths ( ) [ DriverPathKey ] ;
66
66
}
67
67
68
68
public bool HasBrowserPath ( )
69
69
{
70
- return ! string . IsNullOrWhiteSpace ( BrowserPath ( ) ) ;
70
+ return ! string . IsNullOrWhiteSpace ( GetBrowserPath ( ) ) ;
71
71
}
72
72
73
73
/// <summary>
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ public void Start()
275
275
}
276
276
else
277
277
{
278
- this . driverServiceProcess . StartInfo . FileName = new DriverFinder ( this . GetDefaultDriverOptions ( ) ) . DriverPath ( ) ;
278
+ this . driverServiceProcess . StartInfo . FileName = new DriverFinder ( this . GetDefaultDriverOptions ( ) ) . GetDriverPath ( ) ;
279
279
}
280
280
281
281
this . driverServiceProcess . StartInfo . Arguments = this . CommandLineArguments ;
You can’t perform that action at this time.
0 commit comments