You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Finds UIItem which matches specified type and searchCriteria using the default BusyTimeout. Look at documentation of SearchCriteria for details on it.
54
+
/// </summary>
55
+
/// <param name="searchCriteria">Criteria provided to search IUIItem</param>
56
+
/// <returns>First items matching the criteria</returns>
57
+
/// <exception cref="AutomationException">when item not found</exception>
58
+
/// <exception cref="WhiteException">when any errors occured during search</exception>
Copy file name to clipboardExpand all lines: src/TestStack.White/UIItems/TextBox.cs
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,8 @@ public TextBox(AutomationElement automationElement, ActionListener actionListene
14
14
15
15
/// <summary>
16
16
/// Enters the text in the textbox. The text would be cleared first. This is not as good performing as the BulkText method.
17
-
/// This does raise all keyboard events.
17
+
/// This does raise all keyboard events - that means that your string will consist of letters that match the letters
18
+
/// of your string but in current input language.
18
19
/// </summary>
19
20
publicvirtualstringText
20
21
{
@@ -34,6 +35,7 @@ public virtual string Text
34
35
35
36
/// <summary>
36
37
/// Sets the text in the textbox. The text would be cleared first. This is a better performing than the Text method. This doesn't raise all keyboard events.
38
+
/// The string will be set exactly as it is in your code.
0 commit comments