Skip to content

Commit

Permalink
Fix comments issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuarezruiz committed Dec 1, 2023
1 parent b7b0119 commit c474cf6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/TestUtils/src/UITest.Appium/HelperExtensions.cs
Expand Up @@ -177,7 +177,7 @@ public static bool WaitForTextToBePresentInElement(this IApp app, string automat
/// <summary>
/// Presses the volume up button on the device.
/// </summary>
/// <param name="app"></param>
/// <param name="app">Represents the main gateway to interact with an app.</param>
public static void PressVolumeUp(this IApp app)
{
app.CommandExecutor.Execute("pressVolumeUp", ImmutableDictionary<string, object>.Empty);
Expand All @@ -186,13 +186,13 @@ public static void PressVolumeUp(this IApp app)
/// <summary>
/// Presses the volume down button on the device.
/// </summary>
/// <param name="app"></param>
/// <param name="app">Represents the main gateway to interact with an app.</param>
public static void PressVolumeDown(this IApp app)
{
app.CommandExecutor.Execute("pressVolumeDown", ImmutableDictionary<string, object>.Empty);
}
}

/// <summary>
/// <summary>
/// Performs a left to right swipe gesture on the screen.
/// </summary>
/// <param name="app">Represents the main gateway to interact with an app.</param>
Expand Down

0 comments on commit c474cf6

Please sign in to comment.