Handling Azure AD/Entra ID Authentication with Playwright

DALL·E 3d render of a theatre mask with a key

One of the most frequently asked questions I get is how to test web apps that use Azure AD/Entra ID. Rather than repeating myself, I figured I’d write a blog post to expand on the official docs.

NOTE: the creepy feature image for this post was generated via DALL-E?

Environment Variables

Storing secrets in plain text in our code or configuration files can pose a significant security risk, especially if we share our code with others or publish it on public repositories like GitHub. Instead, we can store the credentials of our test accounts using environment variables. The environment variables are then referenced in our tests using the process core module of Node.js:


To set the values of these variables we can use our CI system’s secret management. For GitHub Actions, setting the values in the pipeline would look something like this:

example GitHub Actions workflow setting env vars scoped to job


To make local development easier, we can use .env files that are added to .gitignore to make sure they don’t get committed to source control.

example .env file with key-value pairs

Tips

  • As a starting point, use codegen to walk through logging in, then refactor.
  • Create a new tenant for testing and turn off MFA and security defaults. MFA cannot be fully automated and requires manual intervention.
  • Optionally, set conditional access policies on your test environment to bypass login, then have a separate environment and tests for the login scenario itself.
  • The test account will need to be granted permission to the app under test for the first time. You can either add conditionals to your test script (if X locator is present, then click Yes) to account for this or manually log in once to grant permissions.
    e.g. this is a one-time step
    Azure AD App Permissions for login auth

Example setup

Create auth.setup.ts

Update playwright.config.ts with project dependencies, so the script above gets run before tests that need to be authenticated:

When the tests get run, the following will happen:

  1. auth.setup.ts logs into AAD/Entra ID using creds from env variables
  2. the signed-in state is saved to file storageState.json
  3. the browser context for all of the test cases is created using the already logged-in state via storageState.json

With this setup, we reduce the test execution time by only logging in once, rather than in every individual test case.

Wrapping up

I’m curious to learn about other ways that people are handling AAD/Entra ID authentication in their Playwright tests. If you have experience with this, I’d love to hear about the challenges you faced and the solutions you came up with. Your insights could be valuable to others who are also working on Playwright test automation and facing similar issues.

Happy testing!

Leave a Reply

Your email address will not be published. Required fields are marked *