@script-savvy/playwright
v1.0.1
Published
A Comprehensive Test Automation Framework Based on Playwright. Intuitive. Efficient. Made simple.
Downloads
4
Maintainers
Readme
Script Savvy: end-to-end Automation Framework
Structure
├── config
│ ├── data
│ │ ├── data.json
│ ├── environment
│ │ ├── configLoader.ts
│ │ ├── testManager.ts
├── logs
├── pageObjects
│ ├── LoginPage.ts
│ └── ProfilePage.ts
├── performance
│ ├── runner.js
│ └── test-scenario.js
├── reports
│ ├── allure-reports
│ ├── artifacts
│ ├── html-reports
│ ├── lighthouse
├── src
│ ├── api
│ │ └── client.ts
│ ├── core
│ │ ├── dataHandler.ts
│ │ ├── logger.ts
│ │ └── testHandler.ts
│ ├── http
│ │ ├── httpClient.ts
│ │ └── axiosHttpClient.ts
│ └── authConfig.ts
├── tests
│ ├── login.test.ts
│ ├── profile.test.ts
│ └── api
│ └── example.test.ts
├── utils
│ ├── lighthouse.js
│ └── testConfig.ts