コード例 #1
0
ファイル: Browser.cs プロジェクト: tnypxl/playwright-sharp
 /// <inheritdoc/>
 public Task <ITarget> WaitForTargetAsync(Func <ITarget, bool> predicate, WaitForOptions options = null) => throw new NotImplementedException();
コード例 #2
0
 /// <inheritdoc />
 public Task <IRequest> WaitForRequestAsync(Regex regex, WaitForOptions options = null) => throw new NotImplementedException();
コード例 #3
0
 /// <inheritdoc />
 public Task <IResponse> WaitForResponseAsync(string url, WaitForOptions options = null) => throw new NotImplementedException();
コード例 #4
0
ファイル: Page.cs プロジェクト: nomada2/playwright-sharp
 /// <inheritdoc cref="IPage.WaitForRequestAsync(string, WaitForOptions)"/>
 public Task <IRequest> WaitForRequestAsync(string url, WaitForOptions options = null)
 {
     throw new NotImplementedException();
 }