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
/// Raised when the JavaScript <c>DOMContentLoaded</c> <see href="https://developer.mozilla.org/en-US/docs/Web/Events/DOMContentLoaded"/> event is dispatched.
/// Raised when a frame is navigated to a new url.
55
+
/// </summary>
56
+
eventEventHandler<FrameEventArgs>FrameNavigated;
57
+
58
+
/// <summary>
59
+
/// Raised when JavaScript within the page calls one of console API methods, e.g. <c>console.log</c> or <c>console.dir</c>. Also emitted if the page throws an error or a warning.
60
+
/// The arguments passed into <c>console.log</c> appear as arguments on the event handler.
/// Loads the specified <paramref name="url"/> in the Main Frame.
13
127
/// </summary>
@@ -41,23 +155,23 @@ public interface IChromiumWebBrowser
41
155
stringAddress{get;}
42
156
43
157
/// <summary>
44
-
/// Gets all frames attached to the page.
158
+
/// Gets all frames attached to the browser.
45
159
/// </summary>
46
-
/// <value>An array of all frames attached to the page.</value>
160
+
/// <value>An array of all frames attached to the browser.</value>
47
161
Frame[]Frames{get;}
48
162
49
163
/// <summary>
50
-
/// Gets page's main frame
164
+
/// Gets browser's main frame
51
165
/// </summary>
52
166
/// <remarks>
53
-
/// Page is guaranteed to have a main frame which persists during navigations.
167
+
/// Browser is guaranteed to have a main frame which persists during navigations.
54
168
/// </remarks>
55
169
FrameMainFrame{get;}
56
170
57
171
/// <summary>
58
172
/// Navigates to an url
59
173
/// </summary>
60
-
/// <param name="url">URL to navigate page to. The url should include scheme, e.g. https://.</param>
174
+
/// <param name="url">URL to navigate to. The url should include scheme, e.g. https://.</param>
61
175
/// <param name="timeout">Maximum navigation time in milliseconds, defaults to 30 seconds, pass <c>0</c> to disable timeout. </param>
62
176
/// <param name="waitUntil">When to consider navigation succeeded, defaults to <see cref="WaitUntilNavigation.Load"/>. Given an array of <see cref="WaitUntilNavigation"/>, navigation is considered to be successful after all events have been fired</param>
63
177
/// <returns>Task which resolves to the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect</returns>
0 commit comments