Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update iOS-specific capabilities docs hyperlink #660

Merged
merged 2 commits into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/Appium.Net/Appium/Enums/IOSMobileCapabilityType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace OpenQA.Selenium.Appium.Enums
{
/// <summary>
/// The list of iOS-specific capabilities
/// Read: https://github.com/appium/appium/blob/1.5/docs/en/writing-running-appium/caps.md#ios-only
/// Read: https://github.com/appium/appium-xcuitest-driver/blob/master/docs/capabilities.md
/// </summary>
public sealed class IOSMobileCapabilityType
{
Expand Down Expand Up @@ -63,12 +63,12 @@ public sealed class IOSMobileCapabilityType
public static readonly string AutoDismissAlerts = "autoDismissAlerts";

/// <summary>
/// Use native intruments lib (ie disable instruments-without-delay).
/// Use native instruments lib (ie disable instruments-without-delay).
/// </summary>
public static readonly string NativeInstrumentsLib = "nativeInstrumentsLib";

/// <summary>
/// (Sim-only) Enable "real", non-javascript-based web taps in Safari.
/// (Sim-only) Enable "real", non-JavaScript-based web taps in Safari.
/// Default: false.
/// Warning: depending on viewport size/ratio this might not accurately tap an element
/// </summary>
Expand All @@ -80,7 +80,7 @@ public sealed class IOSMobileCapabilityType
public static readonly string SafariInitialUrl = "safariInitialUrl";

/// <summary>
/// (Sim-only) Allow javascript to open new windows in Safari. Default keeps current sim setting
/// (Sim-only) Allow JavaScript to open new windows in Safari. Default keeps current sim setting
/// </summary>
public static readonly string SafariAllowPopups = "safariAllowPopups";

Expand Down Expand Up @@ -145,4 +145,4 @@ public sealed class IOSMobileCapabilityType
/// </summary>
public static readonly string AppName = "appName";
}
}
}