Skip to main content

Creating Tests - Playwright Engine

How is Playwright Engine different from the Playwright npm module integration?

Read the migration guide here.

Playwright is an open-source automation framework developed by Microsoft that enables cross-browser automation for web applications. It provides a set of APIs and libraries for automating interactions with web browsers such as Chrome, Firefox, and Microsoft Edge.

👉 Join our shared Pokeshop API Demo environment and try creating a Test yourself!

Click the Playwright Engine option to continue:

Choose Trigger

You can choose an example test in the shared Pokeshop API Demo environment.

Choose Example Pokemon

Choose the Pokeshop - Import example and click Run.

The Playwright Testing Engine executes your testing scripts natively in the platform, by specifying three things:

  • The target URL of your website (private or public).
  • A JavaScript file with your tests.
  • And the exported method you want to execute.

When the test finishes, you will get the following results:

  • The Playwright script output.
  • The trace from both the front-end UI and back-end processes.

test result

trace result

Please visit the Test Results document for an explanation of viewing the results of a test.

👉 Join our shared Pokeshop API Demo environment and try creating a Test yourself!