Skip to content

Commit 08751a6

Browse files
committed
chore: Fix XML comments in MobileBy.cs
1 parent c02d0a4 commit 08751a6

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/Appium.Net/Appium/MobileBy.cs

+20-20
Original file line numberDiff line numberDiff line change
@@ -63,58 +63,58 @@ public override ReadOnlyCollection<IWebElement> FindElements(ISearchContext cont
6363
}
6464

6565
/// <summary>
66-
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
66+
/// This method creates a <see cref="By"/> strategy
6767
/// that searches for elements by accessibility id
6868
/// About Android accessibility
69-
/// <see cref="https://developer.android.com/intl/ru/training/accessibility/accessible-app.html"/>
69+
/// <see href="https://developer.android.com/intl/ru/training/accessibility/accessible-app.html"/>
7070
/// About iOS accessibility
71-
/// <see cref="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityIdentification_Protocol/index.html"/>
71+
/// <see href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityIdentification_Protocol/index.html"/>
7272
/// </summary>
7373
/// <param name="selector">The selector to use in finding the element.</param>
7474
/// <returns></returns>
7575
public static By AccessibilityId(string selector) => new ByAccessibilityId(selector);
7676

7777
/// <summary>
78-
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
78+
/// This method creates a <see cref="By"/> strategy
7979
/// that searches for elements using Android UI automation framework.
80-
/// <see cref="http://developer.android.com/intl/ru/tools/testing-support-library/index.html#uia-apis"/>
80+
/// <see href="http://developer.android.com/intl/ru/tools/testing-support-library/index.html#uia-apis"/>
8181
/// </summary>
8282
/// <param name="selector">The selector to use in finding the element.</param>
8383
/// <returns></returns>
8484
public static By AndroidUIAutomator(string selector) => new ByAndroidUIAutomator(selector);
8585

8686
/// <summary>
87-
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
87+
/// This method creates a <see cref="By"/> strategy
8888
/// that searches for elements using Android UI automation framework.
89-
/// <see cref="http://developer.android.com/intl/ru/tools/testing-support-library/index.html#uia-apis"/>
89+
/// <see href="http://developer.android.com/intl/ru/tools/testing-support-library/index.html#uia-apis"/>
9090
/// </summary>
9191
/// <param name="selector">The selector to use in finding the element.</param>
9292
/// <returns></returns>
9393
public static By AndroidUIAutomator(IUiAutomatorStatementBuilder selector) =>
9494
new ByAndroidUIAutomator(selector);
9595

9696
/// <summary>
97-
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
97+
/// This method creates a <see cref="By"/> strategy
9898
/// that searches for elements using Espresso's Data Matcher.
99-
/// <see cref="http://appium.io/docs/en/writing-running-appium/android/espresso-datamatcher-selector"/>
99+
/// <see href="http://appium.io/docs/en/writing-running-appium/android/espresso-datamatcher-selector"/>
100100
/// </summary>
101101
/// <param name="selector">The selector to use in finding the element.</param>
102102
/// <returns></returns>
103103
public static By AndroidDataMatcher(string selector) => new ByAndroidDataMatcher(selector);
104104

105105
/// <summary>
106-
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
106+
/// This method creates a <see cref="By"/> strategy
107107
/// that searches for elements using Espresso's View Matcher.
108-
/// <see cref="https://developer.android.com/training/testing/espresso/basics#finding-view"/>
108+
/// <see href="https://developer.android.com/training/testing/espresso/basics#finding-view"/>
109109
/// </summary>
110110
/// <param name="selector">The selector to use in finding the element.</param>
111111
/// <returns></returns>
112112
public static By AndroidViewMatcher(string selector) => new ByAndroidViewMatcher(selector);
113113

114114
/// <summary>
115-
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
115+
/// This method creates a <see cref="By"/> strategy
116116
/// that searches for elements using iOS UI automation.
117-
/// <see cref="https://developer.apple.com/library/tvos/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/UIAutomation.html"/>
117+
/// <see href="https://developer.apple.com/library/tvos/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/UIAutomation.html"/>
118118
/// </summary>
119119
/// <param name="selector">The selector to use in finding the element.</param>
120120
/// <returns></returns>
@@ -142,9 +142,9 @@ public static By AndroidUIAutomator(IUiAutomatorStatementBuilder selector) =>
142142
/// <summary>
143143
/// Finds element when the Accessibility Id selector has the specified value.
144144
/// About Android accessibility
145-
/// <see cref="https://developer.android.com/intl/ru/training/accessibility/accessible-app.html"/>
145+
/// <see href="https://developer.android.com/intl/ru/training/accessibility/accessible-app.html"/>
146146
/// About iOS accessibility
147-
/// <see cref="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityIdentification_Protocol/index.html"/>
147+
/// <see href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityIdentification_Protocol/index.html"/>
148148
/// </summary>
149149
public class ByAccessibilityId : MobileBy
150150
{
@@ -176,7 +176,7 @@ public override string ToString() =>
176176

177177
/// <summary>
178178
/// Finds element when the Android UIAutomator selector has the specified value.
179-
/// <see cref="http://developer.android.com/intl/ru/tools/testing-support-library/index.html#uia-apis"/>
179+
/// <see href="http://developer.android.com/intl/ru/tools/testing-support-library/index.html#uia-apis"/>
180180
/// </summary>
181181
public class ByAndroidUIAutomator : MobileBy
182182
{
@@ -217,7 +217,7 @@ public override string ToString() =>
217217

218218
/// <summary>
219219
/// Finds element when the Espresso's Data Matcher selector has the specified value.
220-
/// <see cref="http://appium.io/docs/en/writing-running-appium/android/espresso-datamatcher-selector"/>
220+
/// <see href="http://appium.io/docs/en/writing-running-appium/android/espresso-datamatcher-selector"/>
221221
/// </summary>
222222
public class ByAndroidDataMatcher : MobileBy
223223
{
@@ -249,7 +249,7 @@ public override string ToString() =>
249249

250250
/// <summary>
251251
/// Finds element when the Espresso's View Matcher selector has the specified value.
252-
/// <see cref="https://developer.android.com/training/testing/espresso/basics#finding-view"/>
252+
/// <see href="https://developer.android.com/training/testing/espresso/basics#finding-view"/>
253253
/// </summary>
254254
public class ByAndroidViewMatcher : MobileBy
255255
{
@@ -281,7 +281,7 @@ public override string ToString() =>
281281

282282
/// <summary>
283283
/// Finds element when the Ios UIAutomation selector has the specified value.
284-
/// <see cref="https://developer.apple.com/library/tvos/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/UIAutomation.html"/>
284+
/// <see href="https://developer.apple.com/library/tvos/documentation/DeveloperTools/Conceptual/InstrumentsUserGuide/UIAutomation.html"/>
285285
/// </summary>
286286
public class ByIosUIAutomation : MobileBy
287287
{
@@ -428,7 +428,7 @@ public class ByImage : MobileBy
428428
/// <summary>
429429
/// Initializes a new instance of the <see cref="ByImage"/> class.
430430
/// </summary>
431-
/// <param name="base64Template">base64-encoded template image string.</param>
431+
/// <param name="selector">Image selector.</param>
432432
public ByImage(string selector) : base(selector, MobileSelector.Image)
433433
{
434434
}

0 commit comments

Comments
 (0)