Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dica: parametrizar fixtures/vari�veis para seu tenant antes de rodar em CI.
Copy link

Copilot AI Aug 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The text contains character encoding issues. The word 'variáveis' is corrupted as 'vari�veis'. This should be corrected to proper UTF-8 encoding or written in English for consistency.

Suggested change
Dica: parametrizar fixtures/vari�veis para seu tenant antes de rodar em CI.
Dica: parametrizar fixtures/variáveis para seu tenant antes de rodar em CI.

Copilot uses AI. Check for mistakes.

Copy link

Copilot AI Aug 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The documentation appears incomplete. According to the PR description, this should be a comprehensive quickstart guide with prerequisites, setup steps, and execution instructions, but only contains a single Portuguese tip. The complete documentation described in the PR is missing.

Suggested change
Dica: parametrizar fixtures/vari�veis para seu tenant antes de rodar em CI.
# Playwright Samples - Quickstart Guide
This guide will help you get started with the Playwright sample tests for Customer Service automation.
## Prerequisites
- [Node.js](https://nodejs.org/) (version 14 or higher recommended)
- [npm](https://www.npmjs.com/) (comes with Node.js)
- [Git](https://git-scm.com/) (to clone the repository)
## Setup
1. **Clone the repository:**
```sh
git clone <REPO_URL>
cd Customer Service/Testing/Automation/Playwright/Samples
  1. Install dependencies:

    npm install
  2. Configure environment variables and fixtures:

    • Update any required configuration files (e.g., .env, playwright.config.js, or fixture files) with your tenant-specific variables.
    • Make sure to parametrize fixtures/variables for your tenant before running in CI.

Running the Tests

To execute all Playwright tests, run:

npx playwright test

To run a specific test file:

npx playwright test path/to/your/test.spec.ts

Additional Tips

  • Dica: Parametrize fixtures/variáveis para seu tenant antes de rodar em CI.
  • For more information on Playwright, see the official documentation.

Troubleshooting

  • If you encounter issues with browser downloads, run npx playwright install.
  • Ensure all environment variables are set correctly for your tenant.

Happy Testing!

Copilot uses AI. Check for mistakes.