Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(authenticate): Provide credentials for HTTP authentication #125

Merged
merged 1 commit into from
Jan 7, 2025

Conversation

ahuigo
Copy link
Contributor

@ahuigo ahuigo commented Jan 6, 2025

@ahuigo ahuigo force-pushed the feat branch 3 times, most recently from a65305e to a6ceb73 Compare January 7, 2025 07:09
@ahuigo
Copy link
Contributor Author

ahuigo commented Jan 7, 2025

BTW: fix a CI bug(puppeteer/puppeteer#13196)

Ubuntu 23.10+ (or possibly other Linux distros in the future) ship an
AppArmor profile that applies to Chrome stable binaries installed at
/opt/google/chrome/chrome (the default installation path). This policy
is stored at /etc/apparmor.d/chrome. This AppArmor policy prevents
Chrome for Testing binaries downloaded by Puppeteer from using user namespaces
resulting in the No usable sandbox! error when trying to launch the
browser. For workarounds, see
https://chromium.googlesource.com/chromium/src/+/main/docs/security/apparmor-userns-restrictions.md

Copy link
Owner

@lino-levan lino-levan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a section in the README to document this workaround for new ubuntu versions? If so PR LGTM. Thank you.

@ahuigo
Copy link
Contributor Author

ahuigo commented Jan 7, 2025

I wanna write a unit test for page.authenticate.

Is it possible to get json response from page?

/// <reference lib="dom" />

import { assertEquals } from "@std/assert";

import { launch } from "../mod.ts";

Deno.test("Testing authenticate", async (t) => {
  // Launch browser
  const browser = await launch();

  // Open the webpage
  const page = await browser.newPage(
    "https://httpbin.org/basic-auth/user/passwd",
  );

  // Provide credentials for HTTP authentication.
  await page.authenticate({ username: "user", password: "passwd" });

  // Get JSON response
  const response = JSON.parse(await page.content());

  // Assert JSON response
  assertEquals(response.authenticated, true);
  assertEquals(response.user, "user");

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

@lino-levan lino-levan merged commit 03ee82b into lino-levan:main Jan 7, 2025
3 checks passed
@lino-levan
Copy link
Owner

Oops, merged it on accident. I'm going to revert the change. Could you open a new PR?

@lino-levan
Copy link
Owner

Is it possible to get json response from page?

I think your approach is probably the right way to go about it? I would test it and find out. Not entirely sure how to do that.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants