playwright/docs/src/navigations.md
Dmitry Gozman 499324961a
docs: remove Promise.all from examples (#19154)
Replaced with explicit `popupPromise` variable.
2022-11-30 12:36:35 -08:00

14 KiB

id title
navigations Navigations

Playwright can navigate to URLs and handle navigations caused by page interactions. This guide covers common scenarios to wait for page navigations and loading to complete.

Navigation lifecycle

Playwright splits the process of showing a new document in a page into navigation and loading.

Navigation starts by changing the page URL or by interacting with the page (e.g., clicking a link). The navigation intent may be canceled, for example, on hitting an unresolved DNS address or transformed into a file download.

Navigation is committed when the response headers have been parsed and session history is updated. Only after the navigation succeeds (is committed), the page starts loading the document.

Loading covers getting the remaining response body over the network, parsing, executing the scripts and firing load events:

  • [method: Page.url] is set to the new url
  • document content is loaded over network and parsed
  • [event: Page.DOMContentLoaded] event is fired
  • page executes some scripts and loads resources like stylesheets and images
  • [event: Page.load] event is fired
  • page executes dynamically loaded scripts
  • networkidle is fired when no new network requests are made for 500 ms

Scenarios initiated by browser UI

Navigations can be initiated by changing the URL bar, reloading the page or going back or forward in session history.

Auto-wait

Navigating to a URL auto-waits for the page to fire the load event. If the page does a client-side redirect before load, [method: Page.goto] will auto-wait for the redirected page to fire the load event.

// Navigate the page
await page.goto('https://example.com');
// Navigate the page
page.navigate("https://example.com");
# Navigate the page
await page.goto("https://example.com")
# Navigate the page
page.goto("https://example.com")
// Navigate the page
await page.GotoAsync("https://example.com");

Custom wait

Override the default behavior to wait until a specific event, like networkidle.

// Navigate and wait until network is idle
await page.goto('https://example.com', { waitUntil: 'networkidle' });
// Navigate and wait until network is idle
page.navigate("https://example.com", new Page.NavigateOptions()
  .setWaitUntil(WaitUntilState.NETWORKIDLE));
# Navigate and wait until network is idle
await page.goto("https://example.com", wait_until="networkidle")
# Navigate and wait until network is idle
page.goto("https://example.com", wait_until="networkidle")
// Navigate and wait until network is idle
await page.GotoAsync("https://example.com", new PageGotoOptions { WaitUntil = WaitUntilState.NetworkIdle });

Wait for element

In lazy-loaded pages, it can be useful to wait until an element is visible with [method: Locator.waitFor]. Alternatively, page interactions like [method: Page.click] auto-wait for elements.

// Navigate and wait for element
await page.goto('https://example.com');
await page.getByText('Example Domain').waitFor();

// Navigate and click element
// Click will auto-wait for the element
await page.goto('https://example.com');
await page.getByText('Example Domain').click();
// Navigate and wait for element
page.navigate("https://example.com");
page.getByText("Example Domain").waitFor();

// Navigate and click element
// Click will auto-wait for the element
page.navigate("https://example.com");
page.getByText("Example Domain").click();
# Navigate and wait for element
await page.goto("https://example.com")
await page.get_by_text("example domain").wait_for()

# Navigate and click element
# Click will auto-wait for the element
await page.goto("https://example.com")
await page.get_by_text("example domain").click()
# Navigate and wait for element
page.goto("https://example.com")
page.get_by_text("example domain").wait_for()

# Navigate and click element
# Click will auto-wait for the element
page.goto("https://example.com")
page.get_by_text("example domain").click()
// Navigate and wait for element
await page.GotoAsync("https://example.com");
await page.GetByText("Example Domain").WaitForAsync();

// Navigate and click element
// Click will auto-wait for the element
await page.GotoAsync("https://example.com");
await page.GetByText("Example Domain").ClickAsync();

Scenarios initiated by page interaction

In the scenarios below, [method: Locator.click] initiates a navigation and then waits for the navigation to complete.

Auto-wait

By default, [method: Locator.click] will wait for the navigation step to complete. This can be combined with a page interaction on the navigated page which would auto-wait for an element.

// Click will auto-wait for navigation to complete
await page.getByText('Login').click();

// Fill will auto-wait for element on navigated page
await page.getByLabel('User Name').fill('John Doe');
// Click will auto-wait for navigation to complete
page.getByText("Login").click();

// Fill will auto-wait for element on navigated page
page.getByLabel("User Name").fill("John Doe");
# Click will auto-wait for navigation to complete
await page.get_by_text("Login").click()

# Fill will auto-wait for element on navigated page
await page.get_by_label("User Name").fill("John Doe")
# Click will auto-wait for navigation to complete
page.get_by_text("Login").click()

# Fill will auto-wait for element on navigated page
page.get_by_label("User Name").fill("John Doe")
// Click will auto-wait for navigation to complete
await page.GetByText("Login").ClickAsync();

// Fill will auto-wait for element on navigated page
await page.GetByLabel("User Name").FillAsync("John Doe");

Custom wait

locator.click can be combined with [method: Page.waitForLoadState] to wait for a loading event.

await page.getByRole('button').click(); // Click triggers navigation
await page.waitForLoadState('networkidle'); // This resolves after 'networkidle'
page.locator("button").click(); // Click triggers navigation
page.waitForLoadState(LoadState.NETWORKIDLE); // This resolves after "networkidle"
await page.locator("button").click()  # Click triggers navigation
await page.wait_for_load_state("networkidle")  # This waits for the "networkidle"
page.locator("button").click()  # Click triggers navigation
page.wait_for_load_state("networkidle")  # This waits for the "networkidle"
await page.Locator("button").ClickAsync(); // Click triggers navigation
await page.WaitForLoadStateAsync(LoadState.NetworkIdle); // This resolves after "networkidle"

Wait for element

In lazy-loaded pages, it can be useful to wait until an element is visible with [method: Locator.waitFor]. Alternatively, page interactions like [method: Locator.click] auto-wait for elements.

// Click will auto-wait for the element and trigger navigation
await page.getByText('Login').click();
// Wait for the element
await page.getByLabel('User Name').waitFor();

// Click triggers navigation
await page.getByText('Login').click();
// Fill will auto-wait for element
await page.getByLabel('User Name').fill('John Doe');
// Click will auto-wait for the element and trigger navigation
page.getByText("Login").click();
// Wait for the element
page.getByLabel("User Name").waitFor();

// Click triggers navigation
page.getByText("Login").click();
// Fill will auto-wait for element
page.getByLabel("User Name").fill("John Doe");
# Click will auto-wait for the element and trigger navigation
await page.get_by_text("Login").click()
# Wait for the element
await page.get_by_label("User Name").wait_for()

# Click triggers navigation
await page.get_by_text("Login").click()
# Fill will auto-wait for element
await page.get_by_label("User Name").fill("John Doe")
# Click triggers navigation
page.get_by_text("Login").click()
# Click will auto-wait for the element
page.get_by_label("User Name").wait_for()

# Click triggers navigation
page.get_by_text("Login").click()
# Fill will auto-wait for element
page.get_by_label("User Name").fill("John Doe")
// Click will auto-wait for the element and trigger navigation
await page.GetByText("Login").ClickAsync();
// Wait for the element
await page.GetByLabel("User Name").WaitForAsync();

// Click triggers navigation
await page.GetByText("Login").ClickAsync();
// Fill will auto-wait for element
await page.GetByLabel("User Name").FillAsync("John Doe");

Asynchronous navigation

Clicking an element could trigger asynchronous processing before initiating the navigation. In these cases, it is recommended to explicitly call [method: Page.waitForNavigation]. For example:

  • Navigation is triggered from a setTimeout
  • Page waits for network requests before navigation
// Start waiting for navigation before clicking. Note no await.
const navigationPromise = page.waitForNavigation();
await page.getByText('Navigate after timeout').click();
await navigationPromise;
// Using waitForNavigation with a callback prevents a race condition
// between clicking and waiting for a navigation.
page.waitForNavigation(() -> { // Waits for the next navigation
  page.getByText("Navigate after timeout").click(); // Triggers a navigation after a timeout
});
# Waits for the next navigation. Using Python context manager
# prevents a race condition between clicking and waiting for a navigation.
async with page.expect_navigation():
    # Triggers a navigation after a timeout
    await page.get_by_text("Navigate after timeout").click()
# Waits for the next navigation. Using Python context manager
# prevents a race condition between clicking and waiting for a navigation.
with page.expect_navigation():
    # Triggers a navigation after a timeout
    page.get_by_text("Navigate after timeout").click()
// Using waitForNavigation with a callback prevents a race condition
// between clicking and waiting for a navigation.
await page.RunAndWaitForNavigationAsync(async () =>
{
    // Triggers a navigation after a timeout
    await page.GetByText("Navigate after timeout").ClickAsync();
});

Multiple navigations

Clicking an element could trigger multiple navigations. In these cases, it is recommended to explicitly [method: Page.waitForNavigation] to a specific url. For example:

  • Client-side redirects issued after the load event
  • Multiple pushes to history state
// Start waiting for navigation before clicking. Note no await.
const navigationPromise = page.waitForNavigation({ url: '**/login' });
// This action triggers the navigation with a script redirect.
await page.getByText('Click me').click();
await navigationPromise;
// Running action in the callback of waitForNavigation prevents a race
// condition between clicking and waiting for a navigation.
page.waitForNavigation(new Page.WaitForNavigationOptions().setUrl("**/login"), () -> {
  page.getByText("Click me").click(); // Triggers a navigation with a script redirect
});
# Using Python context manager prevents a race condition
# between clicking and waiting for a navigation.
async with page.expect_navigation(url="**/login"):
    # Triggers a navigation with a script redirect
    await page.get_by_text("Click me").click()
# Using Python context manager prevents a race condition
# between clicking and waiting for a navigation.
with page.expect_navigation(url="**/login"):
    # Triggers a navigation with a script redirect
    page.get_by_text("Click me").click()
// Running action in the callback of waitForNavigation prevents a race
// condition between clicking and waiting for a navigation.
await page.RunAndWaitForNavigationAsync(async () =>
{
    // Triggers a navigation with a script redirect.
    await page.GetByText("Click me").ClickAsync();
}, new()
{
    UrlString = "**/login"
});

Loading a popup

When popup is opened, explicitly calling [method: Page.waitForLoadState] ensures that popup is loaded to the desired state.

// Start waiting for popup before clicking. Note no await.
const popupPromise = page.waitForEvent('popup');
await page.getByText('Open popup').click();
const popup = await popupPromise;
// Wait for the popup to load.
await popup.waitForLoadState('load');
Page popup = page.waitForPopup(() -> {
  page.getByText("Open popup").click(); // Opens popup
});
popup.waitForLoadState(LoadState.LOAD);
async with page.expect_popup() as popup_info:
    await page.get_by_text("Open popup").click() # Opens popup
popup = await popup_info.value
await popup.wait_for_load_state("load")
with page.expect_popup() as popup_info:
    page.get_by_text("Open popup").click() # Opens popup
popup = popup_info.value
popup.wait_for_load_state("load")
var popup = await page.RunAndWaitForPopupAsync(async () =>
{
    await page.GetByText("Open popup").ClickAsync(); // Opens popup
});
popup.WaitForLoadStateAsync(LoadState.Load);

Advanced patterns

For pages that have complicated loading patterns, [method: Page.waitForFunction] is a powerful and extensible approach to define a custom wait criteria.

await page.goto('http://example.com');
await page.waitForFunction(() => window.amILoadedYet());
// Ready to take a screenshot, according to the page itself.
await page.screenshot();
page.navigate("http://example.com");
page.waitForFunction("() => window.amILoadedYet()");
// Ready to take a screenshot, according to the page itself.
page.screenshot();
await page.goto("http://example.com")
await page.wait_for_function("() => window.amILoadedYet()")
# Ready to take a screenshot, according to the page itself.
await page.screenshot()
page.goto("http://example.com")
page.wait_for_function("() => window.amILoadedYet()")
# Ready to take a screenshot, according to the page itself.
page.screenshot()
await page.GotoAsync("http://example.com");
await page.WaitForFunctionAsync("() => window.amILoadedYet()");
// Ready to take a screenshot, according to the page itself.
await page.ScreenshotAsync();