diff --git a/src/Appium.Net/Appium/MobileBy.cs b/src/Appium.Net/Appium/MobileBy.cs index a6220f50..ec879264 100644 --- a/src/Appium.Net/Appium/MobileBy.cs +++ b/src/Appium.Net/Appium/MobileBy.cs @@ -63,30 +63,30 @@ public override ReadOnlyCollection FindElements(ISearchContext cont } /// - /// This method creates a strategy + /// This method creates a strategy /// that searches for elements by accessibility id /// About Android accessibility - /// + /// /// About iOS accessibility - /// + /// /// /// The selector to use in finding the element. /// public static By AccessibilityId(string selector) => new ByAccessibilityId(selector); /// - /// This method creates a strategy + /// This method creates a strategy /// that searches for elements using Android UI automation framework. - /// + /// /// /// The selector to use in finding the element. /// public static By AndroidUIAutomator(string selector) => new ByAndroidUIAutomator(selector); /// - /// This method creates a strategy + /// This method creates a strategy /// that searches for elements using Android UI automation framework. - /// + /// /// /// The selector to use in finding the element. /// @@ -94,27 +94,27 @@ public static By AndroidUIAutomator(IUiAutomatorStatementBuilder selector) => new ByAndroidUIAutomator(selector); /// - /// This method creates a strategy + /// This method creates a strategy /// that searches for elements using Espresso's Data Matcher. - /// + /// /// /// The selector to use in finding the element. /// public static By AndroidDataMatcher(string selector) => new ByAndroidDataMatcher(selector); /// - /// This method creates a strategy + /// This method creates a strategy /// that searches for elements using Espresso's View Matcher. - /// + /// /// /// The selector to use in finding the element. /// public static By AndroidViewMatcher(string selector) => new ByAndroidViewMatcher(selector); /// - /// This method creates a strategy + /// This method creates a strategy /// that searches for elements using iOS UI automation. - /// + /// /// /// The selector to use in finding the element. /// @@ -142,9 +142,9 @@ public static By AndroidUIAutomator(IUiAutomatorStatementBuilder selector) => /// /// Finds element when the Accessibility Id selector has the specified value. /// About Android accessibility - /// + /// /// About iOS accessibility - /// + /// /// public class ByAccessibilityId : MobileBy { @@ -176,7 +176,7 @@ public override string ToString() => /// /// Finds element when the Android UIAutomator selector has the specified value. - /// + /// /// public class ByAndroidUIAutomator : MobileBy { @@ -217,7 +217,7 @@ public override string ToString() => /// /// Finds element when the Espresso's Data Matcher selector has the specified value. - /// + /// /// public class ByAndroidDataMatcher : MobileBy { @@ -249,7 +249,7 @@ public override string ToString() => /// /// Finds element when the Espresso's View Matcher selector has the specified value. - /// + /// /// public class ByAndroidViewMatcher : MobileBy { @@ -281,7 +281,7 @@ public override string ToString() => /// /// Finds element when the Ios UIAutomation selector has the specified value. - /// + /// /// public class ByIosUIAutomation : MobileBy { @@ -428,7 +428,7 @@ public class ByImage : MobileBy /// /// Initializes a new instance of the class. /// - /// base64-encoded template image string. + /// Image selector. public ByImage(string selector) : base(selector, MobileSelector.Image) { }