@@ -309,7 +309,7 @@ public static void ScrollTo(this IApp app, string toElementId, bool down = true)
309
309
}
310
310
311
311
/// <summary>
312
- /// Return the currently presented alert.
312
+ /// Return the currently presented alert or action sheet .
313
313
/// </summary>
314
314
/// <param name="app">Represents the main gateway to interact with an app.</param>
315
315
public static IUIElement ? GetAlert ( this IApp app )
@@ -318,7 +318,7 @@ public static void ScrollTo(this IApp app, string toElementId, bool down = true)
318
318
}
319
319
320
320
/// <summary>
321
- /// Return the currently presented alerts.
321
+ /// Return the currently presented alerts or action sheets .
322
322
/// </summary>
323
323
/// <param name="app">Represents the main gateway to interact with an app.</param>
324
324
public static IReadOnlyCollection < IUIElement > GetAlerts ( this IApp app )
@@ -328,9 +328,9 @@ public static IReadOnlyCollection<IUIElement> GetAlerts(this IApp app)
328
328
}
329
329
330
330
/// <summary>
331
- /// Return the buttons in the alert.
331
+ /// Return the buttons in the alert or action sheet .
332
332
/// </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>
334
334
public static IReadOnlyCollection < IUIElement > GetAlertButtons ( this IUIElement alertElement )
335
335
{
336
336
var result = alertElement . Command . Execute ( "getAlertButtons" , new Dictionary < string , object >
@@ -341,9 +341,9 @@ public static IReadOnlyCollection<IUIElement> GetAlertButtons(this IUIElement al
341
341
}
342
342
343
343
/// <summary>
344
- /// Return the text messages in the alert.
344
+ /// Return the text messages in the alert or action sheet .
345
345
/// </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>
347
347
public static IReadOnlyCollection < string > GetAlertText ( this IUIElement alertElement )
348
348
{
349
349
var result = alertElement . Command . Execute ( "getAlertText" , new Dictionary < string , object >
0 commit comments