19 lines
802 B
TypeScript
19 lines
802 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('自定义上传请求', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('http://localhost:7130/pc/file-upload/custom-upload-request')
|
|
|
|
const upload = page.getByRole('button', { name: '选取文件' })
|
|
const [fileChooser] = await Promise.all([page.waitForEvent('filechooser'), upload.click()])
|
|
|
|
const path = require('node:path')
|
|
const currentPath = path.resolve(__dirname, '测试.jpg')
|
|
|
|
const [request] = await Promise.all([page.waitForEvent('requestfailed'), fileChooser.setFiles(currentPath)])
|
|
const { authorization } = await request.headers()
|
|
|
|
await expect(request.headers()).not.toBeNull()
|
|
await expect(authorization).toEqual('Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==')
|
|
})
|