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.
21 lines
No EOL
658 B
Text
21 lines
No EOL
658 B
Text
# .env.example
|
|
# Environment configuration
|
|
|
|
# Environment type (uncomment one)
|
|
NODE_ENV="dev"
|
|
# NODE_ENV="qa"
|
|
# NODE_ENV="sys"
|
|
|
|
# Base URLs by environment (uncomment the one you need)
|
|
BASE_URL="https://selfservice.dev.glassclaim.com" # dev
|
|
# BASE_URL="https://selfservice.test.glassclaim.com" # qa
|
|
# BASE_URL="https://www-test2.safelite.com/fmg/?fmgPage=vehicle" # sys
|
|
|
|
# API endpoints (uncomment to match your BASE_URL)
|
|
CCIS_API_URL="https://api.test.belronus.io" # dev
|
|
|
|
# Admin service API URL
|
|
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="" |