npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nearform/playwright-firebase

v1.2.8

Published

Plugin to allow for Firebase authentication in Playwright tests

Downloads

1,043

Readme

Continuous Integration

@nearform/playwright-firebase

[!NOTE]
This is an ESM only package, please make sure your usage follows the rules of ESM User the following guide to learn more

Tidy way to authenticate Playwright E2E tests on Firebase.

Install using npm:

npm install @nearform/playwright-firebase

or yarn:

yarn add @nearform/playwright-firebase

Want to see it in action? Go to Example to try it out!

Contents

  1. Setup
  2. Motivation
  3. Example

Setup

Firebase environment variables

To set up this plugin you will need three sensitive environment variables in order to authenticate with Firebase. These are:

  1. Firebase Service Account
  2. Firebase User ID
  3. Firebase Configurations

For more information about Firebase you can read the documentation here

It's recommended to place these values in a .env file. For clarity, the Firebase User ID is often abbreviated to UID, as you will find below. The plugin accepts

  • Service Account: JSON
  • UID: string
  • Firebase Configurations: JSON

you don't need to place quotes around these environment variables.

Attaching playright-firebase as a fixture to Playwright

Playwright is based on fixtures. You have likely already used them within Playwright, they are the { page } object that is passed in to test. More information on them here. In the very same way, we are able to add our own fixture, which we call auth to the tests. To do so, we need to create a setup file that will automatically run before all other tests. We will call this auth.setup.ts

// auth.setup.ts
import playwrightFirebasePlugin from '@nearform/playwright-firebase'
import { test as base } from '@playwright/test'

const serviceAccount = JSON.parse(process.env.SERVICE_ACCOUNT!)
const uid = process.env.REACT_APP_UID!
const options = JSON.parse(process.env.REACT_APP_FIREBASE_CONFIG!)
export const test = playwrightFirebasePlugin(serviceAccount, options, uid, base)

Above we import the test directly from @playwright/test as base and then export a new test object which is identical to base with the addition of a fixture called auth. An important note is that we should now import test from this file instead of @playwright/test.

//example.spec.ts
import { expect } from '@playwright/test'
import { test } from '../auth.setup' // <----- here we import test from our auth.setup.ts.
import { Page } from '@playwright/test'

// We now access auth in exactly the same method as we do page.
test('has title', async ({ page, auth }: { page: Page; auth: any }) => {
  await page.goto('/', { waitUntil: 'networkidle' })
  await auth.login(page) // <-- we need to pass in the page object here.

  const txt = await page.getByText('Welcome! You are now logged in')
  await expect(txt).toBeVisible()

  await auth.logout(page)

  await expect(txt).not.toBeVisible()
})

It's recommended to use await for your expect assertions after logging in/out, as the Firebase authentication is likely tied to states that require re-rendering of your application.

TypeScript

If you're using Typescript, one small addition you'll need to make is to add the type Credentials to your playwright.config.ts such that

import { Credentials } from '@nearform/playwright-firebase'

export default defineConfig<Credentials>({
  ...
})

Motivation

This package is built as a plugin for Playwright testing for the use-case of Firebase authentication. There are two methods of automating a login procedure in Playwright tests:

  1. As a normal user would: inserting a real username and password into the intended fields.
  2. Authenticating via the Firebase SDK directly

This plugin was developed with the 2nd method in mind as it is

  • Provider agnostic: Does not need to know the specifics of the authentication provider
  • A faster way of logging in, so you can focus on testing
  • Better security than using a username and password.

Example

Within this repo we have an example/ folder that contains a sample React application for authenticating with the Google Provider. You'll need to setup the Firebase environment variables as described above in the setup section, but the rest is taken care of.

  1. Clone this repository
  2. npm i
  3. cd ./example
  4. npm i
  5. npm run start

At this point, you should see a web server running on localhost:3000. If your screen is blank, check the console on your browser for any error messages. It's likely that you haven't place the .env file in the right location, or that you haven't filled it in correctly.

  1. Make a .env file within ./example, copy and paste over the variable names from .env.sample and populate them with your real Firebase environment variables
  2. Run npx playwright test