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
* fix broken xml docs links
since there are properties matching those type names, the types need to be fully qualified
* fix more docs links
* Update Page.cs
Copy file name to clipboardExpand all lines: lib/PuppeteerSharp/Browser.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -235,7 +235,7 @@ public BrowserContext[] BrowserContexts()
235
235
236
236
/// <summary>
237
237
/// Returns a Task which resolves to an array of all open pages.
238
-
/// Non visible pages, such as <c>"background_page"</c>, will not be listed here. You can find them using <see cref="Target.PageAsync"/>
238
+
/// Non visible pages, such as <c>"background_page"</c>, will not be listed here. You can find them using <see cref="PuppeteerSharp.Target.PageAsync"/>
239
239
/// </summary>
240
240
/// <returns>Task which resolves to an array of all open pages inside the Browser.
241
241
/// In case of multiple browser contexts, the method will return an array with all the pages in all browser contexts.
Copy file name to clipboardExpand all lines: lib/PuppeteerSharp/BrowserContext.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
usingSystem;
1
+
usingSystem;
2
2
usingSystem.Collections.Generic;
3
3
usingSystem.Linq;
4
4
usingSystem.Threading.Tasks;
@@ -8,7 +8,7 @@ namespace PuppeteerSharp
8
8
{
9
9
/// <summary>
10
10
/// BrowserContexts provide a way to operate multiple independent browser sessions. When a browser is launched, it has
11
-
/// a single <see cref="BrowserContext"/> used by default. The method <see cref="Browser.NewPageAsync"/> creates a <see cref="Page"/> in the default <see cref="BrowserContext"/>
11
+
/// a single <see cref="BrowserContext"/> used by default. The method <see cref="PuppeteerSharp.Browser.NewPageAsync"/> creates a <see cref="Page"/> in the default <see cref="BrowserContext"/>
Copy file name to clipboardExpand all lines: lib/PuppeteerSharp/Page.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -118,7 +118,7 @@ private Page(
118
118
publiceventEventHandler<MetricEventArgs>Metrics;
119
119
120
120
/// <summary>
121
-
/// Raised when a JavaScript dialog appears, such as <c>alert</c>, <c>prompt</c>, <c>confirm</c> or <c>beforeunload</c>. Puppeteer can respond to the dialog via <see cref="Dialog"/>'s <see cref="Dialog.Accept(string)"/> or <see cref="Dialog.Dismiss"/> methods.
121
+
/// Raised when a JavaScript dialog appears, such as <c>alert</c>, <c>prompt</c>, <c>confirm</c> or <c>beforeunload</c>. Puppeteer can respond to the dialog via <see cref="Dialog"/>'s <see cref="PuppeteerSharp.Dialog.Accept(string)"/> or <see cref="PuppeteerSharp.Dialog.Dismiss"/> methods.
/// Consider using <seealso cref="BrowserContext.OverridePermissionsAsync(string, IEnumerable{OverridePermission})"/> to grant permissions for the page to read its geolocation.
402
+
/// Consider using <seealso cref="PuppeteerSharp.BrowserContext.OverridePermissionsAsync(string, IEnumerable{OverridePermission})"/> to grant permissions for the page to read its geolocation.
/// <param name="value">Whether to enable request interception..</param>
@@ -858,7 +858,7 @@ public Task ExposeFunctionAsync<T1, T2, T3, T4, TResult>(string name, Func<T1, T
858
858
/// - the main resource failed to load.
859
859
///
860
860
/// <see cref="GoToAsync(string, int?, WaitUntilNavigation[])"/> will not throw an error when any valid HTTP status code is returned by the remote server,
861
-
/// including 404 "Not Found" and 500 "Internal Server Error". The status code for such responses can be retrieved by calling <see cref="Response.Status"/>
861
+
/// including 404 "Not Found" and 500 "Internal Server Error". The status code for such responses can be retrieved by calling <see cref="PuppeteerSharp.Response.Status"/>
862
862
///
863
863
/// > **NOTE** <see cref="GoToAsync(string, int?, WaitUntilNavigation[])"/> either throws an error or returns a main resource response.
864
864
/// The only exceptions are navigation to `about:blank` or navigation to the same URL with a different hash, which would succeed and return `null`.
@@ -1358,7 +1358,7 @@ public Task SetCacheEnabledAsync(bool enabled = true)
1358
1358
/// <param name="options"></param>
1359
1359
/// <exception cref="SelectorException">If there's no element matching <paramref name="selector"/></exception>
1360
1360
/// <remarks>
1361
-
/// To press a special key, like <c>Control</c> or <c>ArrowDown</c> use <see cref="Keyboard.PressAsync(string, PressOptions)"/>
1361
+
/// To press a special key, like <c>Control</c> or <c>ArrowDown</c> use <see cref="PuppeteerSharp.Input.Keyboard.PressAsync(string, PressOptions)"/>
0 commit comments