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="elementHandleTask"/> as the first argument
9
+
/// </summary>
10
+
/// <typeparam name="T">The type of the response</typeparam>
11
+
/// <param name="elementHandleTask">A task that returns an <see cref="ElementHandle"/> that will be used as the first argument in <paramref name="pageFunction"/></param>
12
+
/// <param name="pageFunction">Function to be evaluated in browser context</param>
13
+
/// <param name="args">Arguments to pass to <c>pageFunction</c></param>
14
+
/// <returns>Task which resolves to the return value of <c>pageFunction</c></returns>
15
+
/// <exception cref="SelectorException">If <paramref name="elementHandleTask"/> resolves to <c>null</c></exception>
0 commit comments