Skip to content

PauloGoncalvesBH/running-playwright-on-aws-lambda

Repository files navigation

Running hundreds of Playwright tests in a few seconds with AWS Lambda

Give the repository a star ⭐, it encourages me to create advanced software quality content 100% free

This project has a playwright implementation so that it is consumed via AWS Lambda, allowing to parallelize the execution of all files and making the execution much faster.

The success of this implementation demonstrates that, in scenarios where E2E testing is needed to validate critical behaviors that are not possible in another type of test, it is possible to use AWS Lambda to run this same test on all Pull Requests, not just a few times in day.

Note: This project was created as a result of study. Identify whether the parallelism presented here suits your case.

Result

With playwright on serverless it was possible to run 110 files parallelized, with 221 tests, in less than 25 seconds. This same test running without parallelization would take 23 minutes.

To see the execution in detail, you can access the pipeline log by clicking here.

The gif below demonstrates the execution:

Gif showing playwright execution

Pricing

Running hundreds of Lambda functions that last a few seconds has little impact on the final cost. To implement this parallelism in your project, perform the price calculation.

AWS Lambda Price:

The AWS Lambda free usage tier includes 1M free requests per month and 400,000 GB-seconds of compute time per month.

Source: https://aws.amazon.com/lambda/pricing/

Application diagram

Diagram

CloudWatch metrics

Below are some important CloudWatch metrics.

110 lambda functions were invoked, however my account has a limit of 50 parallel executions, which made the total execution double in time.

The average time that a lambda function takes to run is 7 seconds, which is less than the total of 23 seconds that takes to run the test.

However 23 seconds is a quiet time to wait when running an E2E test in a pipeline. I think we both agree that it's better than 23 minutes.

Parallel executions

Limited to 50.

Parallel runs limited to 50

Invocations

1 invocation per test file in ./tests/E2E.

Number of calls equal to 110, 1 per test file

Duration

The longest running lambda function was 10.2 seconds, less than half of the total execution time of all functions.

With a higher concurrent execution we would have better results in total time.

Duration showing the longest lambda was 10.2 seconds

More information

To understand how tests are run and AWS Lambda is built I recommend accessing the pipelines in ./.github/workflows/ and the Makefile.

Deploying at AWS Lambda

  1. Install serverless globally:
npm install --global serverless@3.X
  1. Create AWS Acess keys: https://www.serverless.com/framework/docs/providers/aws/guide/credentials/#creating-aws-access-keys

  2. Configure the Serverless Framework CLI to use AWS access keys

serverless config credentials \
  --provider aws \
  --key <AWS_ACCESS_KEY_ID> \
  --secret <AWS_SECRET_ACCESS_KEY>

More at: https://www.serverless.com/framework/docs/providers/aws/cli-reference/config-credentials#configure-the-default-profile

  1. And, finally, deploy the application at AWS Lambda:
make deploy

Run tests at AWS Lambda

After deploying run the tests using the following command:

make test-serverless

Run locally (without using AWS Lambda)

Acess the directory ./tests and execute:

npm ci

Run the test with:

npm test

LICENSE GNU General Public License v3.0

About

Running hundreds of Playwright E2E tests in a few seconds with AWS Lambda

Topics

Resources

License

Stars

Watchers

Forks

Languages