@@ -65,10 +65,10 @@ public override ReadOnlyCollection<IWebElement> FindElements(ISearchContext cont
65
65
/// <summary>
66
66
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
67
67
/// that searches for elements by accessibility id
68
- /// About Android accessibility
69
- /// <see cref ="https://developer.android.com/intl/ru/training/accessibility/accessible-app.html"/>
70
- /// About iOS accessibility
71
- /// <see cref ="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityIdentification_Protocol/index.html"/>
68
+ /// <br> About Android accessibility</br>
69
+ /// <see href ="https://developer.android.com/intl/ru/training/accessibility/accessible-app.html"/>
70
+ /// <br> About iOS accessibility</br>
71
+ /// <see href ="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityIdentification_Protocol/index.html"/>
72
72
/// </summary>
73
73
/// <param name="selector">The selector to use in finding the element.</param>
74
74
/// <returns></returns>
@@ -77,7 +77,7 @@ public override ReadOnlyCollection<IWebElement> FindElements(ISearchContext cont
77
77
/// <summary>
78
78
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
79
79
/// 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"/>
81
81
/// </summary>
82
82
/// <param name="selector">The selector to use in finding the element.</param>
83
83
/// <returns></returns>
@@ -86,7 +86,7 @@ public override ReadOnlyCollection<IWebElement> FindElements(ISearchContext cont
86
86
/// <summary>
87
87
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
88
88
/// 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"/>
90
90
/// </summary>
91
91
/// <param name="selector">The selector to use in finding the element.</param>
92
92
/// <returns></returns>
@@ -96,7 +96,7 @@ public static By AndroidUIAutomator(IUiAutomatorStatementBuilder selector) =>
96
96
/// <summary>
97
97
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
98
98
/// 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"/>
100
100
/// </summary>
101
101
/// <param name="selector">The selector to use in finding the element.</param>
102
102
/// <returns></returns>
@@ -105,7 +105,7 @@ public static By AndroidUIAutomator(IUiAutomatorStatementBuilder selector) =>
105
105
/// <summary>
106
106
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
107
107
/// 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"/>
109
109
/// </summary>
110
110
/// <param name="selector">The selector to use in finding the element.</param>
111
111
/// <returns></returns>
@@ -114,7 +114,7 @@ public static By AndroidUIAutomator(IUiAutomatorStatementBuilder selector) =>
114
114
/// <summary>
115
115
/// This method creates a <see cref="OpenQA.Selenium.By"/> strategy
116
116
/// 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"/>
118
118
/// </summary>
119
119
/// <param name="selector">The selector to use in finding the element.</param>
120
120
/// <returns></returns>
@@ -141,10 +141,10 @@ public static By AndroidUIAutomator(IUiAutomatorStatementBuilder selector) =>
141
141
142
142
/// <summary>
143
143
/// Finds element when the Accessibility Id selector has the specified value.
144
- /// About Android accessibility
145
- /// <see cref ="https://developer.android.com/intl/ru/training/accessibility/accessible-app.html"/>
146
- /// About iOS accessibility
147
- /// <see cref ="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityIdentification_Protocol/index.html"/>
144
+ /// <br> About Android accessibility </br>
145
+ /// <see href ="https://developer.android.com/intl/ru/training/accessibility/accessible-app.html"/>
146
+ /// <br> About iOS accessibility</br>
147
+ /// <see href ="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityIdentification_Protocol/index.html"/>
148
148
/// </summary>
149
149
public class ByAccessibilityId : MobileBy
150
150
{
@@ -176,7 +176,7 @@ public override string ToString() =>
176
176
177
177
/// <summary>
178
178
/// 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"/>
180
180
/// </summary>
181
181
public class ByAndroidUIAutomator : MobileBy
182
182
{
@@ -217,7 +217,7 @@ public override string ToString() =>
217
217
218
218
/// <summary>
219
219
/// 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"/>
221
221
/// </summary>
222
222
public class ByAndroidDataMatcher : MobileBy
223
223
{
@@ -249,7 +249,7 @@ public override string ToString() =>
249
249
250
250
/// <summary>
251
251
/// 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"/>
253
253
/// </summary>
254
254
public class ByAndroidViewMatcher : MobileBy
255
255
{
@@ -281,7 +281,7 @@ public override string ToString() =>
281
281
282
282
/// <summary>
283
283
/// 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"/>
285
285
/// </summary>
286
286
public class ByIosUIAutomation : MobileBy
287
287
{
@@ -428,7 +428,7 @@ public class ByImage : MobileBy
428
428
/// <summary>
429
429
/// Initializes a new instance of the <see cref="ByImage"/> class.
430
430
/// </summary>
431
- /// <param name="base64Template ">base64-encoded template image string.</param>
431
+ /// <param name="selector ">base64-encoded template image string.</param>
432
432
public ByImage ( string selector ) : base ( selector , MobileSelector . Image )
433
433
{
434
434
}
0 commit comments