@@ -63,58 +63,58 @@ public override ReadOnlyCollection<IWebElement> FindElements(ISearchContext cont
63
63
}
64
64
65
65
/// <summary>
66
- /// This method creates a <see cref="OpenQA.Selenium. By"/> strategy
66
+ /// This method creates a <see cref="By"/> strategy
67
67
/// that searches for elements by accessibility id
68
68
/// 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"/>
70
70
/// 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"/>
72
72
/// </summary>
73
73
/// <param name="selector">The selector to use in finding the element.</param>
74
74
/// <returns></returns>
75
75
public static By AccessibilityId ( string selector ) => new ByAccessibilityId ( selector ) ;
76
76
77
77
/// <summary>
78
- /// This method creates a <see cref="OpenQA.Selenium. By"/> strategy
78
+ /// This method creates a <see cref="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>
84
84
public static By AndroidUIAutomator ( string selector ) => new ByAndroidUIAutomator ( selector ) ;
85
85
86
86
/// <summary>
87
- /// This method creates a <see cref="OpenQA.Selenium. By"/> strategy
87
+ /// This method creates a <see cref="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>
93
93
public static By AndroidUIAutomator ( IUiAutomatorStatementBuilder selector ) =>
94
94
new ByAndroidUIAutomator ( selector ) ;
95
95
96
96
/// <summary>
97
- /// This method creates a <see cref="OpenQA.Selenium. By"/> strategy
97
+ /// This method creates a <see cref="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>
103
103
public static By AndroidDataMatcher ( string selector ) => new ByAndroidDataMatcher ( selector ) ;
104
104
105
105
/// <summary>
106
- /// This method creates a <see cref="OpenQA.Selenium. By"/> strategy
106
+ /// This method creates a <see cref="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>
112
112
public static By AndroidViewMatcher ( string selector ) => new ByAndroidViewMatcher ( selector ) ;
113
113
114
114
/// <summary>
115
- /// This method creates a <see cref="OpenQA.Selenium. By"/> strategy
115
+ /// This method creates a <see cref="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>
@@ -142,9 +142,9 @@ public static By AndroidUIAutomator(IUiAutomatorStatementBuilder selector) =>
142
142
/// <summary>
143
143
/// Finds element when the Accessibility Id selector has the specified value.
144
144
/// 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"/>
146
146
/// 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"/>
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">Image selector .</param>
432
432
public ByImage ( string selector ) : base ( selector , MobileSelector . Image )
433
433
{
434
434
}
0 commit comments