Skip to content

Commit 1556e86

Browse files
committed
[dotnet] remove deprecated ExecuteChromeCommand methods
1 parent 30ab8b3 commit 1556e86

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

dotnet/src/webdriver/Chromium/ChromiumDriver.cs

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -244,29 +244,6 @@ public object ExecuteCdpCommand(string commandName, Dictionary<string, object> c
244244
return response.Value;
245245
}
246246

247-
/// <summary>
248-
/// Executes a custom Chrome command.
249-
/// </summary>
250-
/// <param name="commandName">Name of the command to execute.</param>
251-
/// <param name="commandParameters">Parameters of the command to execute.</param>
252-
[Obsolete("ExecuteChromeCommand is deprecated in favor of ExecuteCdpCommand.")]
253-
public void ExecuteChromeCommand(string commandName, Dictionary<string, object> commandParameters)
254-
{
255-
ExecuteCdpCommand(commandName, commandParameters);
256-
}
257-
258-
/// <summary>
259-
/// Executes a custom Chrome command.
260-
/// </summary>
261-
/// <param name="commandName">Name of the command to execute.</param>
262-
/// <param name="commandParameters">Parameters of the command to execute.</param>
263-
/// <returns>An object representing the result of the command.</returns>
264-
[Obsolete("ExecuteChromeCommandWithResult is deprecated in favor of ExecuteCdpCommand.")]
265-
public object ExecuteChromeCommandWithResult(string commandName, Dictionary<string, object> commandParameters)
266-
{
267-
return ExecuteCdpCommand(commandName, commandParameters);
268-
}
269-
270247
/// <summary>
271248
/// Creates a session to communicate with a browser using the Chromium Developer Tools debugging protocol.
272249
/// </summary>

0 commit comments

Comments
 (0)