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)
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>
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments