File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
dotnet/src/webdriver/Safari Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -168,21 +168,21 @@ public static SafariDriverService CreateDefaultService()
168
168
}
169
169
170
170
/// <summary>
171
- /// Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable.
171
+ /// Creates a default instance of the SafariDriverService using a specified path to the SafariDriver executable.
172
172
/// </summary>
173
- /// <param name="driverPath">The directory containing the ChromeDriver executable.</param>
174
- /// <returns>A ChromeDriverService using a random port.</returns>
173
+ /// <param name="driverPath">The directory containing the SafariDriver executable.</param>
174
+ /// <returns>A SafariDriverService using a random port.</returns>
175
175
public static SafariDriverService CreateDefaultService ( string driverPath )
176
176
{
177
177
return CreateDefaultService ( driverPath , DefaultSafariDriverServiceExecutableName ) ;
178
178
}
179
179
180
180
/// <summary>
181
- /// Creates a default instance of the SafariDriverService using a specified path to the ChromeDriver executable with the given name.
181
+ /// Creates a default instance of the SafariDriverService using a specified path to the SafariDriver executable with the given name.
182
182
/// </summary>
183
- /// <param name="driverPath">The directory containing the ChromeDriver executable.</param>
184
- /// <param name="driverExecutableFileName">The name of the ChromeDriver executable file.</param>
185
- /// <returns>A ChromeDriverService using a random port.</returns>
183
+ /// <param name="driverPath">The directory containing the SafariDriver executable.</param>
184
+ /// <param name="driverExecutableFileName">The name of the SafariDriver executable file.</param>
185
+ /// <returns>A SafariDriverService using a random port.</returns>
186
186
public static SafariDriverService CreateDefaultService ( string driverPath , string driverExecutableFileName )
187
187
{
188
188
return new SafariDriverService ( driverPath , driverExecutableFileName , PortUtilities . FindFreePort ( ) ) ;
You can’t perform that action at this time.
0 commit comments