Skip to content

Commit

Permalink
[dotnet] remove obsolete TouchActions class
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jun 24, 2022
1 parent 5571415 commit 3b3a3ed
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 237 deletions.
48 changes: 0 additions & 48 deletions dotnet/src/webdriver/DriverCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -481,54 +481,6 @@ public static class DriverCommand
[Obsolete("Command not defined by W3C WebDriver Specification. Use the actions command to define user interactions.")]
public static readonly string SendKeysToActiveElement = "sendKeysToActiveElement";

/// <summary>
/// Represents the TouchSingleTap command.
/// </summary>
[Obsolete("Command not defined by W3C WebDriver Specification. Use the actions command to define user interactions.")]
public static readonly string TouchSingleTap = "touchSingleTap";

/// <summary>
/// Represents the TouchPress command.
/// </summary>
[Obsolete("Command not defined by W3C WebDriver Specification. Use the actions command to define user interactions.")]
public static readonly string TouchPress = "touchDown";

/// <summary>
/// Represents the TouchRelease command.
/// </summary>
[Obsolete("Command not defined by W3C WebDriver Specification. Use the actions command to define user interactions.")]
public static readonly string TouchRelease = "touchUp";

/// <summary>
/// Represents the TouchMove command.
/// </summary>
[Obsolete("Command not defined by W3C WebDriver Specification. Use the actions command to define user interactions.")]
public static readonly string TouchMove = "touchMove";

/// <summary>
/// Represents the TouchScroll command.
/// </summary>
[Obsolete("Command not defined by W3C WebDriver Specification. Use the actions command to define user interactions.")]
public static readonly string TouchScroll = "touchScroll";

/// <summary>
/// Represents the TouchDoubleTap command.
/// </summary>
[Obsolete("Command not defined by W3C WebDriver Specification. Use the actions command to define user interactions.")]
public static readonly string TouchDoubleTap = "touchDoubleTap";

/// <summary>
/// Represents the TouchLongPress command.
/// </summary>
[Obsolete("Command not defined by W3C WebDriver Specification. Use the actions command to define user interactions.")]
public static readonly string TouchLongPress = "touchLongPress";

/// <summary>
/// Represents the TouchFlick command.
/// </summary>
[Obsolete("Command not defined by W3C WebDriver Specification. Use the actions command to define user interactions.")]
public static readonly string TouchFlick = "touchFlick";

/// <summary>
/// Represents the Authenticate command
/// </summary>
Expand Down
189 changes: 0 additions & 189 deletions dotnet/src/webdriver/Interactions/TouchActions.cs

This file was deleted.

1 change: 1 addition & 0 deletions dotnet/src/webdriver/WebDriver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
<Compile Remove="Internal\IFindsByPartialLinkText.cs" />
<Compile Remove="Internal\IFindsByTagName.cs" />
<Compile Remove="Internal\IFindsByXPath.cs" />
<Compile Remove="Interactions\TouchActions.cs" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 3b3a3ed

Please sign in to comment.