├── .dockerignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ └── feature_request.md └── workflows │ └── playwright.yml ├── .gitignore ├── .scannerwork ├── .sonar_lock └── report-task.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CustomReporterConfig.ts ├── Dockerfile ├── LICENSE ├── README.md ├── ReadMeImages ├── DetailedReport.PNG ├── FailureReport.PNG ├── OverallReport.PNG └── SonarReport.PNG ├── global-setup.ts ├── html-report ├── OrtoniHtmlReport.html └── index.html ├── lib ├── APIActions.ts ├── BaseTest.ts ├── DBActions.ts └── WebActions.ts ├── logs └── info.log ├── package.json ├── pageFactory └── pageRepository │ ├── AlertsFrameWindowsPage.ts │ ├── ElementsPage.ts │ ├── InteractionsPage.ts │ ├── LoginPage.ts │ └── WidgetsPage.ts ├── playwright.config.ts ├── sonar-project.properties ├── testConfig.ts ├── tests ├── accessibility │ └── Axe.test.ts ├── api │ ├── GET.test.ts │ └── POST.test.ts ├── db │ └── DB.test.ts ├── devices │ └── Emulation.test.ts ├── functional │ ├── AlertsFrameWindows.test.ts │ ├── Elements.test.ts │ ├── HAR.test.ts │ ├── Interactions.test.ts │ ├── Login.test.ts │ ├── PdfToText.test.ts │ └── Widgets.test.ts ├── lighthouse │ └── Lighthouse.js └── visualComparison │ └── visualComparision.test.ts ├── tsconfig.json └── utils ├── api ├── getUsers.txt └── postUsers.txt └── functional ├── sample.pdf └── sampleFile.jpeg /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/.gitignore -------------------------------------------------------------------------------- /.scannerwork/.sonar_lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.scannerwork/report-task.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/.scannerwork/report-task.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CustomReporterConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/CustomReporterConfig.ts -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/README.md -------------------------------------------------------------------------------- /ReadMeImages/DetailedReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/ReadMeImages/DetailedReport.PNG -------------------------------------------------------------------------------- /ReadMeImages/FailureReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/ReadMeImages/FailureReport.PNG -------------------------------------------------------------------------------- /ReadMeImages/OverallReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/ReadMeImages/OverallReport.PNG -------------------------------------------------------------------------------- /ReadMeImages/SonarReport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/ReadMeImages/SonarReport.PNG -------------------------------------------------------------------------------- /global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/global-setup.ts -------------------------------------------------------------------------------- /html-report/OrtoniHtmlReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/html-report/OrtoniHtmlReport.html -------------------------------------------------------------------------------- /html-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/html-report/index.html -------------------------------------------------------------------------------- /lib/APIActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/lib/APIActions.ts -------------------------------------------------------------------------------- /lib/BaseTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/lib/BaseTest.ts -------------------------------------------------------------------------------- /lib/DBActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/lib/DBActions.ts -------------------------------------------------------------------------------- /lib/WebActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/lib/WebActions.ts -------------------------------------------------------------------------------- /logs/info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/logs/info.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/package.json -------------------------------------------------------------------------------- /pageFactory/pageRepository/AlertsFrameWindowsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/pageFactory/pageRepository/AlertsFrameWindowsPage.ts -------------------------------------------------------------------------------- /pageFactory/pageRepository/ElementsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/pageFactory/pageRepository/ElementsPage.ts -------------------------------------------------------------------------------- /pageFactory/pageRepository/InteractionsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/pageFactory/pageRepository/InteractionsPage.ts -------------------------------------------------------------------------------- /pageFactory/pageRepository/LoginPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/pageFactory/pageRepository/LoginPage.ts -------------------------------------------------------------------------------- /pageFactory/pageRepository/WidgetsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/pageFactory/pageRepository/WidgetsPage.ts -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /testConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/testConfig.ts -------------------------------------------------------------------------------- /tests/accessibility/Axe.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/accessibility/Axe.test.ts -------------------------------------------------------------------------------- /tests/api/GET.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/api/GET.test.ts -------------------------------------------------------------------------------- /tests/api/POST.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/api/POST.test.ts -------------------------------------------------------------------------------- /tests/db/DB.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/db/DB.test.ts -------------------------------------------------------------------------------- /tests/devices/Emulation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/devices/Emulation.test.ts -------------------------------------------------------------------------------- /tests/functional/AlertsFrameWindows.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/functional/AlertsFrameWindows.test.ts -------------------------------------------------------------------------------- /tests/functional/Elements.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/functional/Elements.test.ts -------------------------------------------------------------------------------- /tests/functional/HAR.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/functional/HAR.test.ts -------------------------------------------------------------------------------- /tests/functional/Interactions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/functional/Interactions.test.ts -------------------------------------------------------------------------------- /tests/functional/Login.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/functional/Login.test.ts -------------------------------------------------------------------------------- /tests/functional/PdfToText.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/functional/PdfToText.test.ts -------------------------------------------------------------------------------- /tests/functional/Widgets.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/functional/Widgets.test.ts -------------------------------------------------------------------------------- /tests/lighthouse/Lighthouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/lighthouse/Lighthouse.js -------------------------------------------------------------------------------- /tests/visualComparison/visualComparision.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tests/visualComparison/visualComparision.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/api/getUsers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/utils/api/getUsers.txt -------------------------------------------------------------------------------- /utils/api/postUsers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/utils/api/postUsers.txt -------------------------------------------------------------------------------- /utils/functional/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/utils/functional/sample.pdf -------------------------------------------------------------------------------- /utils/functional/sampleFile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshayp7/playwright-typescript-playwright-test/HEAD/utils/functional/sampleFile.jpeg --------------------------------------------------------------------------------