{"id":24013214,"url":"https://github.com/cihat-kose/playwright-typescript-learning-path","last_synced_at":"2026-06-13T12:02:35.370Z","repository":{"id":265554406,"uuid":"875800448","full_name":"cihat-kose/playwright-typescript-learning-path","owner":"cihat-kose","description":"Learn and experiment with browser automation using Playwright and TypeScript. Includes modular tests, trace analysis, and support for platforms like AliExpress and Amazon.","archived":false,"fork":false,"pushed_at":"2025-03-16T19:08:14.000Z","size":8541,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-11T18:45:58.024Z","etag":null,"topics":["playwright-testing","playwright-typescript","ui-test-automation"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cihat-kose.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-20T21:19:04.000Z","updated_at":"2025-03-16T19:08:17.000Z","dependencies_parsed_at":"2025-01-01T15:23:19.505Z","dependency_job_id":"72f173ba-27a5-48cf-94a3-1da58aa4ad33","html_url":"https://github.com/cihat-kose/playwright-typescript-learning-path","commit_stats":null,"previous_names":["chatgthb/playwrighttypescriptlearn","cihat-kose/playwrighttypescriptlearn","cihat-kose/playwright-typescript-learning-path"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cihat-kose/playwright-typescript-learning-path","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fplaywright-typescript-learning-path","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fplaywright-typescript-learning-path/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fplaywright-typescript-learning-path/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fplaywright-typescript-learning-path/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cihat-kose","download_url":"https://codeload.github.com/cihat-kose/playwright-typescript-learning-path/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cihat-kose%2Fplaywright-typescript-learning-path/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34283391,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["playwright-testing","playwright-typescript","ui-test-automation"],"created_at":"2025-01-08T06:51:43.260Z","updated_at":"2026-06-13T12:02:35.333Z","avatar_url":"https://github.com/cihat-kose.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Playwright TypeScript Learning Path\n\n![Playwright](https://img.shields.io/badge/Playwright-2D6DB5?style=for-the-badge\u0026logo=playwright\u0026logoColor=white)\n![TypeScript](https://img.shields.io/badge/TypeScript-3178C6?style=for-the-badge\u0026logo=typescript\u0026logoColor=white)\n![Node.js](https://img.shields.io/badge/Node.js-339933?style=for-the-badge\u0026logo=nodedotjs\u0026logoColor=white)\n![Visual Studio Code](https://img.shields.io/badge/VSCode-007ACC?style=for-the-badge\u0026logo=visualstudiocode\u0026logoColor=white)\n\nA TypeScript-based Playwright project for learning and experimenting with browser automation. This repository includes tests for platforms like AliExpress and Amazon, with modular test organization and trace results for debugging.\n\n---\n\n## 🚀 Features\n\n- **Playwright Tests**: TypeScript implementation of Playwright for browser automation.\n- **Trace Results**: Includes Playwright trace files for debugging and analysis.\n- **Organized Structure**: Modular test cases for different platforms (e.g., AliExpress, Amazon, GitHub).\n- **Step-by-Step Learning**: Focused on exploring automation through examples.\n\n---\n\n## 📥 Installation\n\n### Prerequisites\n\n- **Node.js** (v16 or later)\n- **npm** (bundled with Node.js)\n- **Visual Studio Code**\n\n### Steps\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/cihat-kose/playwright-typescript-learning-path.git\n   ```\n2. Navigate to the project directory:\n   ```bash\n   cd playwright-typescript-learning-path\n   ```\n3. Install dependencies:\n   ```bash\n   npm install\n   ```\n4. Open the project in VS Code:\n   ```bash\n   code .\n   ```\n\n---\n\n## ⚙️ Usage\n\n### Running Tests\n\nTo run all Playwright tests:\n```bash\nnpx playwright test\n```\n\nTo run a specific test file:\n```bash\nnpx playwright test tests/training/typescript.spec.ts\n```\n\n### Trace Analysis\n\n1. After running tests, trace files are generated in the `test-results` folder.\n2. To open and debug the trace:\n   ```bash\n   npx playwright show-trace test-results/\u003ctrace-folder-name\u003e/trace.zip\n   ```\n\n---\n\n## 📂 Project Structure\n\n```\nplaywright-typescript-learning-path/\n├── node_modules/            # Project dependencies\n├── test-results/            # Playwright test trace files\n│   ├── tests-aliexpress...  # Trace results for AliExpress tests\n│   ├── trace.zip            # Example trace file\n├── tests/                   # Test files\n│   ├── training/            # Training-focused test files\n│   │   ├── testgenerator.spec.ts\n│   │   ├── typescript.spec.ts\n│   │   ├── writetest.spec.ts\n│   ├── aliexpress.spec.ts   # AliExpress-specific tests\n│   ├── amazon.spec.js       # Amazon-specific tests\n├── package.json             # Dependencies and scripts\n├── package-lock.json        # Dependency lockfile\n```\n\n---\n\n## 💡 Recommended Tools\n\n- **Visual Studio Code**\n- **Extensions**:\n  - **Playwright Test**: Debug and run Playwright tests directly from VS Code.\n  - **ESLint**: For TypeScript linting.\n  - **Prettier**: For consistent code formatting.\n\n---\n\n## 🙌 Contributing\n\n1. **Fork this repository**.\n2. **Create a new branch**:\n   ```bash\n   git checkout -b feature-branch\n   ```\n3. **Commit your changes**:\n   ```bash\n   git commit -m \"Add new feature\"\n   ```\n4. **Push the branch**:\n   ```bash\n   git push origin feature-branch\n   ```\n5. **Submit a Pull Request**.\n\n---\n\n## 📜 License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n---\n\n## ❓ Contact\n\nFor questions or issues, open an issue in this repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcihat-kose%2Fplaywright-typescript-learning-path","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcihat-kose%2Fplaywright-typescript-learning-path","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcihat-kose%2Fplaywright-typescript-learning-path/lists"}