WaitUntilGoto
Options for when to consider the page has loaded and proceed with further execution
enum WaitUntilGoto {
commit
load
domContentLoaded
firstMeaningfulPaint
firstContentfulPaint
interactiveTime
networkIdle
}
Values
WaitUntilGoto.commit
Fired when network response is received and the document has started loading
WaitUntilGoto.load
Fired when the JavaScript 'load' event occurs
WaitUntilGoto.domContentLoaded
Fired when the DOMContentLoaded event is fired
WaitUntilGoto.firstMeaningfulPaint
Indicates when the primary content of a page is visible to the user
WaitUntilGoto.firstContentfulPaint
The render time of the largest image or text block visible in the viewport, relative to when the user first navigated to the page
WaitUntilGoto.interactiveTime
Use with caution: Chrome's best guess as to when the page becomes interactable
WaitUntilGoto.networkIdle
Use with caution: Fired when there are no more than 2 network connections for at least 500 ms
Member Of
goto
mutation ● waitForNavigation
mutation