/** * Copyright (c) Microsoft Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import fs from 'fs'; import { test, expect, formatLog } from './fixtures'; test('test reopen browser', async ({ startClient, server }) => { const { client, stderr } = await startClient({ env: { DEBUG: 'pw:mcp:test', } }); await client.callTool({ name: 'browser_navigate', arguments: { url: server.HELLO_WORLD }, }); expect(await client.callTool({ name: 'browser_close', })).toHaveResponse({ code: `await page.close()`, }); expect(await client.callTool({ name: 'browser_navigate', arguments: { url: server.HELLO_WORLD }, })).toHaveResponse({ snapshot: expect.stringContaining(`- generic [active] [ref=e1]: Hello, world!`), }); await expect.poll(() => formatLog(stderr()), { timeout: 0 }).toEqual({ 'create browser (persistent)': 2, 'create context': 2, 'close browser': 1, }); }); test('executable path', async ({ startClient, server }) => { const { client } = await startClient({ args: [`--executable-path=bogus`] }); const response = await client.callTool({ name: 'browser_navigate', arguments: { url: server.HELLO_WORLD }, }); expect(response).toHaveResponse({ error: expect.stringContaining(`executable doesn't exist`), isError: true, }); }); test('persistent context', async ({ startClient, server }, testInfo) => { server.setContent('/', `
`, 'text/html'); const { client } = await startClient({ args: [`--user-data-dir=${testInfo.outputPath('user-data-dir')}`], }); expect(await client.callTool({ name: 'browser_navigate', arguments: { url: server.PREFIX }, })).toHaveResponse({ snapshot: expect.stringContaining(`Storage: NO`), }); await new Promise(resolve => setTimeout(resolve, 3000)); await client.callTool({ name: 'browser_close', }); const { client: client2 } = await startClient({ args: [`--user-data-dir=${testInfo.outputPath('user-data-dir')}`], }); expect(await client2.callTool({ name: 'browser_navigate', arguments: { url: server.PREFIX }, })).toHaveResponse({ snapshot: expect.stringContaining(`Storage: YES`), }); }); test('isolated context', async ({ startClient, server }) => { server.setContent('/', ` `, 'text/html'); const { client: client1 } = await startClient({ args: [`--isolated`] }); expect(await client1.callTool({ name: 'browser_navigate', arguments: { url: server.PREFIX }, })).toHaveResponse({ snapshot: expect.stringContaining(`Storage: NO`), }); await client1.callTool({ name: 'browser_close', }); const { client: client2 } = await startClient({ args: [`--isolated`] }); expect(await client2.callTool({ name: 'browser_navigate', arguments: { url: server.PREFIX }, })).toHaveResponse({ snapshot: expect.stringContaining(`Storage: NO`), }); }); test('isolated context with storage state', async ({ startClient, server }, testInfo) => { const storageStatePath = testInfo.outputPath('storage-state.json'); await fs.promises.writeFile(storageStatePath, JSON.stringify({ origins: [ { origin: server.PREFIX, localStorage: [{ name: 'test', value: 'session-value' }], }, ], })); server.setContent('/', ` `, 'text/html'); const { client } = await startClient({ args: [ `--isolated`, `--storage-state=${storageStatePath}`, ] }); expect(await client.callTool({ name: 'browser_navigate', arguments: { url: server.PREFIX }, })).toHaveResponse({ snapshot: expect.stringContaining(`Storage: session-value`), }); }); test('--proxy-server routes browser traffic through the proxy', { annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/40204' }, }, async ({ startClient, server }) => { server.setRoute('/target.html', (_req, res) => { res.end('