Initial commit of the Playwright test framework, including: - Configuration files for Playwright, Docker, and Sauce Labs - Test case structure and page object models - CI/CD pipeline configuration - Utilities and business logic implementations This framework will be used for end-to-end testing of the FMG application.
18 lines
667 B
Bash
18 lines
667 B
Bash
# .env
|
|
# Environment configuration
|
|
|
|
# Environment type
|
|
NODE_ENV="qa"
|
|
|
|
# Base URLs by environment (uncomment the one you need)
|
|
BASE_URL="https://www-qa2.safelite.com/" # qa
|
|
# BASE_URL="https://www-test2.safelite.com/fmg/?fmgPage=vehicle" # sys
|
|
# BASE_URL="https://www-dev2.safelite.com/" # dev
|
|
# BASE_URL="https://www-dev2.safelite.com/?&experiments=LeadGenHeritage=LeadGenHeritageExp_V3=LeadGenHeritageTestV3=true" # dev with leadgen
|
|
|
|
# API endpoints
|
|
CCIS_API_URL="https://api.test.belronus.io"
|
|
ADMIN_SERVICE_API_URL="https://issadminapi.dev.sagaws.net/iss-admin/api/v1/"
|
|
|
|
# API authentication (replace with actual value when running tests)
|
|
CCIS_API_AUTH="undefined"
|