This repository contains automated tests for the Demo Web Shop application using Playwright and TypeScript.
To run the tests you need to install Node.js and npm. Then, you can install the dependencies and playwright by running:
npm install && npx playwright installThe base URL and other configuration options are set in playwright.config.ts. You can modify the baseURL in the use section:
use: {
baseURL: 'https://demowebshop.tricentis.com/',
headless: true,
// ... other options
}