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
/// Fetches an element with <paramref name="selector"/>, scrolls it into view if needed, and then uses <see cref="Page.Mouse"/> to click in the center of the element.
393
+
/// </summary>
394
+
/// <param name="selector">A selector to search for element to click. If there are multiple elements satisfying the selector, the first will be clicked.</param>
395
+
/// <param name="options">click options</param>
396
+
/// <exception cref="SelectorException">If there's no element matching <paramref name="selector"/></exception>
397
+
/// <returns>Task which resolves when the element matching <paramref name="selector"/> is successfully clicked</returns>
/// Fetches an element with <paramref name="selector"/>, scrolls it into view if needed, and then uses <see cref="Page.Mouse"/> to hover over the center of the element.
403
+
/// </summary>
404
+
/// <param name="selector">A selector to search for element to hover. If there are multiple elements satisfying the selector, the first will be hovered.</param>
405
+
/// <exception cref="SelectorException">If there's no element matching <paramref name="selector"/></exception>
406
+
/// <returns>Task which resolves when the element matching <paramref name="selector"/> is successfully hovered</returns>
/// Fetches an element with <paramref name="selector"/> and focuses it
411
+
/// </summary>
412
+
/// <param name="selector">A selector to search for element to focus. If there are multiple elements satisfying the selector, the first will be focused.</param>
413
+
/// <exception cref="SelectorException">If there's no element matching <paramref name="selector"/></exception>
414
+
/// <returns>Task which resolves when the element matching <paramref name="selector"/> is successfully focused</returns>
/// Sends a <c>keydown</c>, <c>keypress</c>/<c>input</c>, and <c>keyup</c> event for each character in the text.
419
+
/// </summary>
420
+
/// <param name="selector">A selector of an element to type into. If there are multiple elements satisfying the selector, the first will be used.</param>
421
+
/// <param name="text">A text to type into a focused element</param>
422
+
/// <param name="options"></param>
423
+
/// <exception cref="SelectorException">If there's no element matching <paramref name="selector"/></exception>
424
+
/// <remarks>
425
+
/// To press a special key, like <c>Control</c> or <c>ArrowDown</c> use <see cref="Keyboard.PressAsync(string, PressOptions)"/>
/// Fetches an element with <paramref name="selector"/>, scrolls it into view if needed, and then uses <see cref="Page.Mouse"/> to hover over the center of the element.
1124
1115
/// </summary>
1125
1116
/// <param name="selector">A selector to search for element to hover. If there are multiple elements satisfying the selector, the first will be hovered.</param>
1126
1117
/// <exception cref="SelectorException">If there's no element matching <paramref name="selector"/></exception>
1127
1118
/// <returns>Task which resolves when the element matching <paramref name="selector"/> is successfully hovered</returns>
/// Fetches an element with <paramref name="selector"/> and focuses it
1141
1123
/// </summary>
1142
1124
/// <param name="selector">A selector to search for element to focus. If there are multiple elements satisfying the selector, the first will be focused.</param>
1143
1125
/// <exception cref="SelectorException">If there's no element matching <paramref name="selector"/></exception>
1144
1126
/// <returns>Task which resolves when the element matching <paramref name="selector"/> is successfully focused</returns>
/// Sends a <c>keydown</c>, <c>keypress</c>/<c>input</c>, and <c>keyup</c> event for each character in the text.
1131
+
/// </summary>
1132
+
/// <param name="selector">A selector of an element to type into. If there are multiple elements satisfying the selector, the first will be used.</param>
1133
+
/// <param name="text">A text to type into a focused element</param>
1134
+
/// <param name="options"></param>
1135
+
/// <exception cref="SelectorException">If there's no element matching <paramref name="selector"/></exception>
1136
+
/// <remarks>
1137
+
/// To press a special key, like <c>Control</c> or <c>ArrowDown</c> use <see cref="Keyboard.PressAsync(string, PressOptions)"/>
/// Sends a <c>keydown</c>, <c>keypress</c>/<c>input</c>, and <c>keyup</c> event for each character in the text.
1279
-
/// </summary>
1280
-
/// <param name="selector">A selector of an element to type into. If there are multiple elements satisfying the selector, the first will be used.</param>
1281
-
/// <param name="text">A text to type into a focused element</param>
1282
-
/// <param name="options"></param>
1283
-
/// <exception cref="SelectorException">If there's no element matching <paramref name="selector"/></exception>
1284
-
/// <remarks>
1285
-
/// To press a special key, like <c>Control</c> or <c>ArrowDown</c> use <see cref="Keyboard.PressAsync(string, PressOptions)"/>
0 commit comments