├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── docusaurus-gh-pages.yml │ ├── node.js.yml │ └── test.yml ├── .gitignore ├── DOCKER.md ├── Dockerfile ├── LICENSE ├── README.md ├── docker-build.sh ├── docker-compose.yml ├── docs ├── docs │ ├── ai-courses │ │ ├── AIAgents.mdx │ │ ├── GenAICourse.mdx │ │ ├── MachineLearning.mdx │ │ ├── _category_.json │ │ └── img │ │ │ └── GenAI.png │ ├── img │ │ └── mcp-server.png │ ├── intro.mdx │ ├── local-setup │ │ ├── Debugging.mdx │ │ ├── Installation.mdx │ │ ├── _category_.json │ │ └── img │ │ │ ├── mcp-server-running.png │ │ │ └── mcp-server.png │ ├── playwright-api │ │ ├── Examples.md │ │ ├── Supported-Tools.mdx │ │ ├── _category_.json │ │ └── img │ │ │ ├── api-response.png │ │ │ └── playwright-api.png │ ├── playwright-web │ │ ├── Console-Logging.mdx │ │ ├── Examples.md │ │ ├── Recording-Actions.mdx │ │ ├── Support-of-Cline-Cursor.mdx │ │ ├── Supported-Tools.mdx │ │ ├── _category_.json │ │ └── img │ │ │ ├── console-log.gif │ │ │ ├── mcp-execution.png │ │ │ └── mcp-result.png │ ├── release.mdx │ └── testing-videos │ │ ├── AIAgents.mdx │ │ ├── Bdd.mdx │ │ └── _category_.json ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── YouTubeVideoEmbed.tsx │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── EA-Icon.jpg │ │ ├── EA-Icon.svg │ │ ├── docusaurus-social-card.jpg │ │ ├── docusaurus.png │ │ ├── easy-to-use.svg │ │ ├── favicon.ico │ │ ├── logo.svg │ │ ├── node.svg │ │ ├── playwright.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── tsconfig.json ├── image └── playwright_claude.png ├── jest.config.cjs ├── mcp-config.json ├── package.json ├── run-tests.cjs ├── run-tests.js ├── smithery.yaml ├── src ├── __tests__ │ ├── codegen.test.ts │ ├── toolHandler.test.ts │ ├── tools.test.ts │ └── tools │ │ ├── api │ │ └── requests.test.ts │ │ └── browser │ │ ├── advancedInteraction.test.ts │ │ ├── console.test.ts │ │ ├── goNavigation.test.ts │ │ ├── interaction.test.ts │ │ ├── navigation.test.ts │ │ ├── output.test.ts │ │ ├── screenshot.test.ts │ │ └── visiblePage.test.ts ├── evals │ └── evals.ts ├── index.ts ├── requestHandler.ts ├── toolHandler.ts ├── tools.ts ├── tools │ ├── api │ │ ├── base.ts │ │ ├── index.ts │ │ └── requests.ts │ ├── browser │ │ ├── base.ts │ │ ├── console.ts │ │ ├── index.ts │ │ ├── interaction.ts │ │ ├── navigation.ts │ │ ├── output.ts │ │ ├── response.ts │ │ ├── screenshot.ts │ │ ├── useragent.ts │ │ └── visiblePage.ts │ ├── codegen │ │ ├── generator.ts │ │ ├── index.ts │ │ ├── recorder.ts │ │ └── types.ts │ ├── common │ │ └── types.ts │ └── index.ts └── types.ts ├── test-import.js ├── tsconfig.json └── tsconfig.test.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/workflows/docusaurus-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/.github/workflows/docusaurus-gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/.gitignore -------------------------------------------------------------------------------- /DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/DOCKER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/README.md -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docker-build.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/docs/ai-courses/AIAgents.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/ai-courses/AIAgents.mdx -------------------------------------------------------------------------------- /docs/docs/ai-courses/GenAICourse.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/ai-courses/GenAICourse.mdx -------------------------------------------------------------------------------- /docs/docs/ai-courses/MachineLearning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/ai-courses/MachineLearning.mdx -------------------------------------------------------------------------------- /docs/docs/ai-courses/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/ai-courses/_category_.json -------------------------------------------------------------------------------- /docs/docs/ai-courses/img/GenAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/ai-courses/img/GenAI.png -------------------------------------------------------------------------------- /docs/docs/img/mcp-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/img/mcp-server.png -------------------------------------------------------------------------------- /docs/docs/intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/intro.mdx -------------------------------------------------------------------------------- /docs/docs/local-setup/Debugging.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/local-setup/Debugging.mdx -------------------------------------------------------------------------------- /docs/docs/local-setup/Installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/local-setup/Installation.mdx -------------------------------------------------------------------------------- /docs/docs/local-setup/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/local-setup/_category_.json -------------------------------------------------------------------------------- /docs/docs/local-setup/img/mcp-server-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/local-setup/img/mcp-server-running.png -------------------------------------------------------------------------------- /docs/docs/local-setup/img/mcp-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/local-setup/img/mcp-server.png -------------------------------------------------------------------------------- /docs/docs/playwright-api/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-api/Examples.md -------------------------------------------------------------------------------- /docs/docs/playwright-api/Supported-Tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-api/Supported-Tools.mdx -------------------------------------------------------------------------------- /docs/docs/playwright-api/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-api/_category_.json -------------------------------------------------------------------------------- /docs/docs/playwright-api/img/api-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-api/img/api-response.png -------------------------------------------------------------------------------- /docs/docs/playwright-api/img/playwright-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-api/img/playwright-api.png -------------------------------------------------------------------------------- /docs/docs/playwright-web/Console-Logging.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-web/Console-Logging.mdx -------------------------------------------------------------------------------- /docs/docs/playwright-web/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-web/Examples.md -------------------------------------------------------------------------------- /docs/docs/playwright-web/Recording-Actions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-web/Recording-Actions.mdx -------------------------------------------------------------------------------- /docs/docs/playwright-web/Support-of-Cline-Cursor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-web/Support-of-Cline-Cursor.mdx -------------------------------------------------------------------------------- /docs/docs/playwright-web/Supported-Tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-web/Supported-Tools.mdx -------------------------------------------------------------------------------- /docs/docs/playwright-web/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-web/_category_.json -------------------------------------------------------------------------------- /docs/docs/playwright-web/img/console-log.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-web/img/console-log.gif -------------------------------------------------------------------------------- /docs/docs/playwright-web/img/mcp-execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-web/img/mcp-execution.png -------------------------------------------------------------------------------- /docs/docs/playwright-web/img/mcp-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/playwright-web/img/mcp-result.png -------------------------------------------------------------------------------- /docs/docs/release.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/release.mdx -------------------------------------------------------------------------------- /docs/docs/testing-videos/AIAgents.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/testing-videos/AIAgents.mdx -------------------------------------------------------------------------------- /docs/docs/testing-videos/Bdd.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/testing-videos/Bdd.mdx -------------------------------------------------------------------------------- /docs/docs/testing-videos/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docs/testing-videos/_category_.json -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/YouTubeVideoEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/src/components/HomepageFeatures/YouTubeVideoEmbed.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/EA-Icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/EA-Icon.jpg -------------------------------------------------------------------------------- /docs/static/img/EA-Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/EA-Icon.svg -------------------------------------------------------------------------------- /docs/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/easy-to-use.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/easy-to-use.svg -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/node.svg -------------------------------------------------------------------------------- /docs/static/img/playwright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/playwright.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /image/playwright_claude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/image/playwright_claude.png -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /mcp-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/mcp-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/package.json -------------------------------------------------------------------------------- /run-tests.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/run-tests.cjs -------------------------------------------------------------------------------- /run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/run-tests.js -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/__tests__/codegen.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/codegen.test.ts -------------------------------------------------------------------------------- /src/__tests__/toolHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/toolHandler.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools/api/requests.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools/api/requests.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools/browser/advancedInteraction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools/browser/advancedInteraction.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools/browser/console.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools/browser/console.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools/browser/goNavigation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools/browser/goNavigation.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools/browser/interaction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools/browser/interaction.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools/browser/navigation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools/browser/navigation.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools/browser/output.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools/browser/output.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools/browser/screenshot.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools/browser/screenshot.test.ts -------------------------------------------------------------------------------- /src/__tests__/tools/browser/visiblePage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/__tests__/tools/browser/visiblePage.test.ts -------------------------------------------------------------------------------- /src/evals/evals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/evals/evals.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/requestHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/requestHandler.ts -------------------------------------------------------------------------------- /src/toolHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/toolHandler.ts -------------------------------------------------------------------------------- /src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools.ts -------------------------------------------------------------------------------- /src/tools/api/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/api/base.ts -------------------------------------------------------------------------------- /src/tools/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/api/index.ts -------------------------------------------------------------------------------- /src/tools/api/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/api/requests.ts -------------------------------------------------------------------------------- /src/tools/browser/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/base.ts -------------------------------------------------------------------------------- /src/tools/browser/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/console.ts -------------------------------------------------------------------------------- /src/tools/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/index.ts -------------------------------------------------------------------------------- /src/tools/browser/interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/interaction.ts -------------------------------------------------------------------------------- /src/tools/browser/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/navigation.ts -------------------------------------------------------------------------------- /src/tools/browser/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/output.ts -------------------------------------------------------------------------------- /src/tools/browser/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/response.ts -------------------------------------------------------------------------------- /src/tools/browser/screenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/screenshot.ts -------------------------------------------------------------------------------- /src/tools/browser/useragent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/useragent.ts -------------------------------------------------------------------------------- /src/tools/browser/visiblePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/browser/visiblePage.ts -------------------------------------------------------------------------------- /src/tools/codegen/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/codegen/generator.ts -------------------------------------------------------------------------------- /src/tools/codegen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/codegen/index.ts -------------------------------------------------------------------------------- /src/tools/codegen/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/codegen/recorder.ts -------------------------------------------------------------------------------- /src/tools/codegen/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/codegen/types.ts -------------------------------------------------------------------------------- /src/tools/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/common/types.ts -------------------------------------------------------------------------------- /src/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/tools/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/src/types.ts -------------------------------------------------------------------------------- /test-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/test-import.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/executeautomation/mcp-playwright/HEAD/tsconfig.test.json --------------------------------------------------------------------------------