Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fresh/tests/deps.ts>Page#waitForXPath

The next-gen web framework.
Extremely Popular
Go to Latest
method Page.prototype.waitForXPath
Re-export
import { Page } from "https://deno.land/x/fresh@1.6.1/tests/deps.ts";

Wait for the xpath to appear in page. If at the moment of calling the method the xpath already exists, the method will return immediately. If the xpath doesn't appear after the timeout milliseconds of waiting, the function will throw.

This method works across navigation

const puppeteer = require('puppeteer');
(async () => {
  const browser = await puppeteer.launch();
  const page = await browser.newPage();
  let currentURL;
  page
    .waitForXPath('//img')
    .then(() => console.log('First URL with image: ' + currentURL));
  for (currentURL of [
    'https://example.com',
    'https://google.com',
    'https://bbc.com',
  ]) {
    await page.goto(currentURL);
  }
  await browser.close();
})();

Parameters

xpath: string
  • A xpath of an element to wait for
optional
options: { visible?: boolean; hidden?: boolean; timeout?: number; }
  • Optional waiting parameters

Returns

Promise<ElementHandle<any> | null>

Promise which resolves when element specified by xpath string is added to DOM. Resolves to null if waiting for hidden: true and xpath is not found in DOM.