2

アプリケーションに使用adal-angularしていますが、localhost に移動するとすぐに、別の Web サイトにリダイレクトしてログインします。を受け取りまし(node:38052) UnhandledPromiseRejectionWarning: Error: Navigation to http://localhost:8080/ was canceled by another oneた。

(async () => {
  try {
    const browser = await playwright.chromium.launch();
    const context = await browser.newContext();
    const core = await context.newPage("http://localhost:8080/");

    await page.screenshot({ path: `example.png` });
    await browser.close();
  } catch (e) {
    console.log(e);
  }
})();

このフローは通常の AD シングル サインオンの動作であり、リダイレクトが終了するのを待ってから、ユーザーとパスワードを挿入してトークンを取得し、API を呼び出す必要があります。

私はgoto無駄に使用しようとしました:

const playwright = require("playwright");

(async () => {
  try {
    const browser = await playwright.chromium.launch();
    const context = await browser.newContext();
    const core = await context.newPage("about:blank");
    const page = await core.goto("http://localhost:8080/");

    await page.screenshot({ path: `example.png` });
    await browser.close();
  } catch (e) {
    console.log(e);
  }
})();

これは操り人形師の例です

const puppeteer = require("puppeteer");

(async () => {
  const browser = await puppeteer.launch();
  const page = await browser.newPage();
  await page.goto("http://localhost:8080", { waitUntil: "networkidle2" });
  await page.screenshot({ path: "example.png" });

  await browser.close();
})();

最後に、次の画像を取得します。

Azure AD ログイン

4

0 に答える 0