├── .github └── logo-stiker.svg ├── .gitignore ├── Readme.md ├── package.json ├── pages └── login-page.ts ├── playwright.config.ts ├── tests └── login.spec.ts └── yarn.lock /.github/logo-stiker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papitodev/4all-ref-2022-playwright/HEAD/.github/logo-stiker.svg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test-results 2 | report 3 | node_modules -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papitodev/4all-ref-2022-playwright/HEAD/Readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papitodev/4all-ref-2022-playwright/HEAD/package.json -------------------------------------------------------------------------------- /pages/login-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papitodev/4all-ref-2022-playwright/HEAD/pages/login-page.ts -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papitodev/4all-ref-2022-playwright/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /tests/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papitodev/4all-ref-2022-playwright/HEAD/tests/login.spec.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/papitodev/4all-ref-2022-playwright/HEAD/yarn.lock --------------------------------------------------------------------------------