Clone Test Application | Bondar Academy
Course: Playwright UI Testing with TypeScript
Module: Introduction
Instructor: Artem Bondar
Lesson Summary
In this lesson, we will download and run a test application for our course. Follow these steps: Step 1: Clone the Application Navigate to github.com and search for pwpractice-app . Click on the application by Bondar Artem. Click on Code and copy the URL to clone the application. Step 2: Set Up the Project Choose a folder on your computer to store the project (e.g., a demo folder on your desktop). Open a new terminal in this folder. Run the command: git clone [URL] to clone the project. Open the cloned folder in Visual Studio Code . Step 3: Install Dependencies Open a new terminal and run: npm install --force . Ignore any warnings or vulnerabilities unless there are errors. Step 4: Run the Application After installation, run: npm start . Access the application in your browser at localhost:4200 . The application features various UI elements, including forms and dialog boxes, which we will automate throughout the course. Keep the terminal running to maintain access to the application. If it stops, use Ctrl + C to stop it and run npm start again to restart. For executing other commands, open a second terminal while keeping the first one active. This setup ensures that the application runs smoothly while you perform other tasks. Now, the application is up and running, and we are ready to proceed to the next lesson!