Authentication
Playwright can be used to automate scenarios that require authentication.
Tests written with Playwright execute in isolated clean-slate environments called browser contexts. This isolation model improves reproducibility and prevents cascading test failures. New browser contexts can load existing authentication state. This eliminates the need to login in every context and speeds up test execution.
Note: This guide covers cookie/token-based authentication (logging in via the app UI). For HTTP authentication use browser.new_context(**kwargs).
#
Automate logging inThe Playwright API can automate interaction with a login form. See Input guide for more details.
The following example automates login on GitHub. Once these steps are executed, the browser context will be authenticated.
- Sync
- Async
These steps can be executed for every browser context. However, redoing login for every test can slow down test execution. To prevent that, we will reuse existing authentication state in new browser contexts.
#
Reuse authentication stateWeb apps use cookie-based or token-based authentication, where authenticated state is stored as cookies or in local storage. Playwright provides browser_context.storage_state(**kwargs) method that can be used to retrieve storage state from authenticated contexts and then create new contexts with prepopulated state.
Cookies and local storage state can be used across different browsers. They depend on your application's authentication model: some apps might require both cookies and local storage.
The following code snippet retrieves state from an authenticated context and creates a new context with that state.
- Sync
- Async
Logging in via the UI and then reusing authentication state can be combined to implement login once and run multiple scenarios. The lifecycle looks like:
- Run tests (for example, with
npm run test
). - Login via UI and retrieve authentication state.
- In Jest, this can be executed in
globalSetup
.
- In Jest, this can be executed in
- In each test, load authentication state in
beforeEach
orbeforeAll
step.
This approach will also work in CI environments, since it does not rely on any external state.
#
API reference#
Session storageRarely, session storage is used for storing information associated with the logged-in state. Session storage is specific to a particular domain and is not persisted across page loads. Playwright does not provide API to persist session storage, but the following snippet can be used to save/load session storage.
- Sync
- Async
#
API reference- browser_context.storage_state(**kwargs)
- browser.new_context(**kwargs)
- page.evaluate(expression, **kwargs)
- browser_context.add_init_script(**kwargs)
#
Multi-factor authenticationAccounts with multi-factor authentication (MFA) cannot be fully automated, and need manual intervention. Persistent authentication can be used to partially automate MFA scenarios.
#
Persistent authenticationWeb browsers use a directory on disk to store user history, cookies, IndexedDB and other local state. This disk location is called the User data directory.
Note that persistent authentication is not suited for CI environments since it relies on a disk location. User data directories are specific to browser types and cannot be shared across browser types.
User data directories can be used with the browser_type.launch_persistent_context(user_data_dir, **kwargs) API.
- Sync
- Async
#
Lifecycle- Create a user data directory on disk 2. Launch a persistent context with the user data directory and login the MFA account. 3. Reuse user data directory to run automation scenarios.