Skip to content

Commit e3e48e4

Browse files
committed
docs
1 parent 693d79c commit e3e48e4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/TestUtils/src/UITest.Appium/HelperExtensions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ public static void ScrollTo(this IApp app, string toElementId, bool down = true)
309309
}
310310

311311
/// <summary>
312-
/// Return the currently presented alert.
312+
/// Return the currently presented alert or action sheet.
313313
/// </summary>
314314
/// <param name="app">Represents the main gateway to interact with an app.</param>
315315
public static IUIElement? GetAlert(this IApp app)
@@ -318,7 +318,7 @@ public static void ScrollTo(this IApp app, string toElementId, bool down = true)
318318
}
319319

320320
/// <summary>
321-
/// Return the currently presented alerts.
321+
/// Return the currently presented alerts or action sheets.
322322
/// </summary>
323323
/// <param name="app">Represents the main gateway to interact with an app.</param>
324324
public static IReadOnlyCollection<IUIElement> GetAlerts(this IApp app)
@@ -328,9 +328,9 @@ public static IReadOnlyCollection<IUIElement> GetAlerts(this IApp app)
328328
}
329329

330330
/// <summary>
331-
/// Return the buttons in the alert.
331+
/// Return the buttons in the alert or action sheet.
332332
/// </summary>
333-
/// <param name="alertElement">The element that represents the alert.</param>
333+
/// <param name="alertElement">The element that represents the alert or action sheet.</param>
334334
public static IReadOnlyCollection<IUIElement> GetAlertButtons(this IUIElement alertElement)
335335
{
336336
var result = alertElement.Command.Execute("getAlertButtons", new Dictionary<string, object>
@@ -341,9 +341,9 @@ public static IReadOnlyCollection<IUIElement> GetAlertButtons(this IUIElement al
341341
}
342342

343343
/// <summary>
344-
/// Return the text messages in the alert.
344+
/// Return the text messages in the alert or action sheet.
345345
/// </summary>
346-
/// <param name="alertElement">The element that represents the alert.</param>
346+
/// <param name="alertElement">The element that represents the alert or action sheet.</param>
347347
public static IReadOnlyCollection<string> GetAlertText(this IUIElement alertElement)
348348
{
349349
var result = alertElement.Command.Execute("getAlertText", new Dictionary<string, object>

0 commit comments

Comments
 (0)