Add Playwright configuration and initial tests for landing page
Copilot Setup Steps / copilot-setup-steps (push) Failing after 17s

- Created playwright.config.ts for test configuration
- Added .last-run.json to store test run status
- Implemented landing.test.ts with tests for navbar visibility and navigation
- Removed unused server proxy configuration from vite.config.ts
This commit is contained in:
2026-05-12 22:10:51 +02:00
parent 8429db504a
commit 4206b93614
23 changed files with 2922 additions and 1370 deletions
+159
View File
@@ -0,0 +1,159 @@
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import {
CallToolRequestSchema,
ListToolsRequestSchema,
} from "@modelcontextprotocol/sdk/types.js";
// @ts-ignore
import { chromium } from "playwright";
const server = new Server(
{
name: "playwright-mcp-server",
version: "1.0.0",
},
{
capabilities: {
tools: {},
},
}
);
let browser: any = null;
let currentPage: any = null;
async function getBrowser(): Promise<any> {
if (!browser) {
browser = await chromium.launch({ headless: true });
}
return browser;
}
async function getPage(): Promise<any> {
const b = await getBrowser();
if (!currentPage) {
currentPage = await b.newPage();
}
return currentPage;
}
const tools = [
{
name: "navigate",
description: "Navigate to a URL and get the page title",
inputSchema: {
type: "object",
properties: {
url: { type: "string", description: "The URL to navigate to" },
},
required: ["url"],
},
handler: async ({ url }: { url: string }) => {
const page = await getPage();
await page.goto(url);
const title = await page.title();
return {
content: [{ type: "text", text: JSON.stringify({ url, title, success: true }) }],
};
},
},
{
name: "getPageContent",
description: "Get text content from the current page",
inputSchema: { type: "object", properties: {} },
handler: async () => {
const page = await getPage();
const content = await page.textContent("body");
return { content: [{ type: "text", text: content || "" }] };
},
},
{
name: "click",
description: "Click an element by CSS selector",
inputSchema: {
type: "object",
properties: { selector: { type: "string", description: "CSS selector" } },
required: ["selector"],
},
handler: async ({ selector }: { selector: string }) => {
const page = await getPage();
await page.click(selector);
return {
content: [{ type: "text", text: JSON.stringify({ success: true, action: "clicked", selector }) }],
};
},
},
{
name: "fillForm",
description: "Fill a form input field",
inputSchema: {
type: "object",
properties: {
selector: { type: "string" },
value: { type: "string" },
},
required: ["selector", "value"],
},
handler: async ({ selector, value }: { selector: string; value: string }) => {
const page = await getPage();
await page.fill(selector, value);
return {
content: [{ type: "text", text: JSON.stringify({ success: true, action: "filled", selector, value }) }],
};
},
},
{
name: "screenshot",
description: "Take a screenshot of the current page",
inputSchema: {
type: "object",
properties: { path: { type: "string" } },
required: ["path"],
},
handler: async ({ path }: { path: string }) => {
const page = await getPage();
await page.screenshot({ path });
return { content: [{ type: "text", text: JSON.stringify({ success: true, path }) }] };
},
},
{
name: "closeBrowser",
description: "Close the browser",
inputSchema: { type: "object", properties: {} },
handler: async () => {
if (browser) {
await browser.close();
browser = null;
currentPage = null;
}
return { content: [{ type: "text", text: JSON.stringify({ success: true }) }] };
},
},
];
server.setRequestHandler(ListToolsRequestSchema, async () => ({
tools: tools.map((t) => ({ name: t.name, description: t.description, inputSchema: t.inputSchema })),
}));
server.setRequestHandler(CallToolRequestSchema, async (request) => {
const { name, arguments: args } = request.params;
const tool = tools.find((t) => t.name === name);
if (!tool) return { content: [{ type: "text", text: `Tool not found: ${name}` }], isError: true };
try {
// @ts-ignore
return await tool.handler(args || {});
} catch (error) {
return {
content: [{ type: "text", text: JSON.stringify({ success: false, error: String(error) }) }],
isError: true,
};
}
});
async function main() {
const transport = new StdioServerTransport();
await server.connect(transport);
console.error("Playwright MCP Server started");
}
main().catch(console.error);