Skip to main content
Playwright Framework Installation Guide

Installation Guide for Playwright Framework

Doris Sooläte avatar
Written by Doris Sooläte
Updated over a year ago

Index

1. Visual Studio Code

2. NPM

3. Playwright

1. Download Visual Studio Code from their official website.

2. After clicking on the Mac option on the download site, it will download a zip file, as shown below:

3. Double-click on the downloaded zip to expand the contents. It will give a file, as shown below:

4. Drag "Visual Studio Code.app" to the "Applications" folder, so as it available in the "Launchpad."

5. Double click on the "Visual Studio Code" to open.

6. Add VS Code to your Dock by right-clicking on the icon to bring up the context menu and choosing Options => Keep in Dock.

1. Open Terminal

2. Use the following Homebrew command to install Node & NPM:

brew install node.

3. Execute the following command to ensure that Node has been installed, it should print the installed Node version:

node -v

4. Execute the following command to ensure that Node has been installed, it should print the installed NPM version:

npm -v

Install all the required dependencies by executing the below command in terminal/command line:

npm i

This will install all the required dependencies for the project.

Did this answer your question?