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
/// Runs <paramref name="pageFunction"/> within the frame and passes it the outcome of <paramref name="arrayHandleTask"/> as the first argument. Use only after <see cref="Page.QuerySelectorAllHandleAsync(string)"/>
34
+
/// </summary>
35
+
/// <typeparam name="T"></typeparam>
36
+
/// <param name="arrayHandleTask">A task that returns an <see cref="JSHandle"/> that represents an array of <see cref="ElementHandle"/> that will be used as the first argument in <paramref name="pageFunction"/></param>
37
+
/// <param name="pageFunction">Function to be evaluated in browser context</param>
38
+
/// <param name="args">Arguments to pass to <c>pageFunction</c></param>
39
+
/// <returns>Task which resolves to the return value of <c>pageFunction</c></returns>
/// Runs <c>document.querySelectorAll</c> within the page. If no elements match the selector, the return value resolve to <see cref="Array.Empty{T}"/>.
177
177
/// </summary>
178
178
/// <param name="selector">A selector to query page for</param>
179
179
/// <returns>Task which resolves to ElementHandles pointing to the frame elements</returns>
0 commit comments