File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -152,12 +152,12 @@ private static ICommandExecutor GenerateDriverServiceCommandExecutor(DriverServi
152
152
if ( service . DriverServicePath == null )
153
153
{
154
154
DriverFinder finder = new DriverFinder ( options ) ;
155
- string fullServicePath = finder . DriverPath ( ) ;
155
+ string fullServicePath = finder . GetDriverPath ( ) ;
156
156
service . DriverServicePath = Path . GetDirectoryName ( fullServicePath ) ;
157
157
service . DriverServiceExecutableName = Path . GetFileName ( fullServicePath ) ;
158
158
if ( finder . HasBrowserPath ( ) )
159
159
{
160
- options . BinaryLocation = finder . BrowserPath ( ) ;
160
+ options . BinaryLocation = finder . GetBrowserPath ( ) ;
161
161
options . BrowserVersion = null ;
162
162
}
163
163
}
Original file line number Diff line number Diff line change @@ -205,12 +205,12 @@ private static ICommandExecutor GenerateDriverServiceCommandExecutor(DriverServi
205
205
if ( service . DriverServicePath == null )
206
206
{
207
207
DriverFinder finder = new DriverFinder ( options ) ;
208
- string fullServicePath = finder . DriverPath ( ) ;
208
+ string fullServicePath = finder . GetDriverPath ( ) ;
209
209
service . DriverServicePath = Path . GetDirectoryName ( fullServicePath ) ;
210
210
service . DriverServiceExecutableName = Path . GetFileName ( fullServicePath ) ;
211
211
if ( finder . HasBrowserPath ( ) )
212
212
{
213
- options . BinaryLocation = finder . BrowserPath ( ) ;
213
+ options . BinaryLocation = finder . GetBrowserPath ( ) ;
214
214
options . BrowserVersion = null ;
215
215
}
216
216
}
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ private static ICommandExecutor GenerateDriverServiceCommandExecutor(DriverServi
157
157
if ( service . DriverServicePath == null )
158
158
{
159
159
DriverFinder finder = new DriverFinder ( options ) ;
160
- string fullServicePath = finder . DriverPath ( ) ;
160
+ string fullServicePath = finder . GetDriverPath ( ) ;
161
161
service . DriverServicePath = Path . GetDirectoryName ( fullServicePath ) ;
162
162
service . DriverServiceExecutableName = Path . GetFileName ( fullServicePath ) ;
163
163
}
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ private static ICommandExecutor GenerateDriverServiceCommandExecutor(DriverServi
163
163
if ( service . DriverServicePath == null )
164
164
{
165
165
DriverFinder finder = new DriverFinder ( options ) ;
166
- string fullServicePath = finder . DriverPath ( ) ;
166
+ string fullServicePath = finder . GetDriverPath ( ) ;
167
167
service . DriverServicePath = Path . GetDirectoryName ( fullServicePath ) ;
168
168
service . DriverServiceExecutableName = Path . GetFileName ( fullServicePath ) ;
169
169
}
You can’t perform that action at this time.
0 commit comments