为网页创建端到端测试可能非常耗时且复杂,因为将动态生成 HTML。 Copilot Chat 可以帮助你为网页创建端到端测试,通过建议必要的代码来与网页进行交互并验证预期结果。
示例方案
想象一个 React 应用程序,该应用程序将在网页上显示产品详细信息。 你需要创建端到端测试,以确保正确显示产品详细信息。 你可以让 Copilot Chat 为你生成这些测试。
import React, { useState, useEffect } from 'react';
import PropTypes from 'prop-types';
const ProductDetails = ({ productId = '1' }) => {
const [product, setProduct] = useState(null);
const [loading, setLoading] = useState(true);
const [error, setError] = useState(null);
useEffect(() => {
const fetchProduct = async () => {
try {
const response = await fetch(`/api/product/${productId}`);
if (!response.ok) {
throw new Error('Product not found');
}
const data = await response.json();
setProduct(data);
setLoading(false);
} catch (err) {
setError(err.message);
setLoading(false);
}
};
fetchProduct();
return;
}, [productId]); // Add productId to dependency array
if (loading) return <div>Loading...</div>;
if (error) return <div>Error: {error}</div>;
return (
<div>
{product && (
<div>
<h2>{product.name}</h2>
<p>{product.description}</p>
<p>Price: ${product.price}</p>
</div>
)}
</div>
);
};
ProductDetails.propTypes = {
productId: PropTypes.string
};
export default ProductDetails;
示例提示
Note
此示例使用 Playwright 进行端到端测试,但你可以使用其他框架,如 Selenium 或 Cypress。
Using Playwright, generate an e2e test to ensure the product displays correctly.
如果你有一个现有测试,并希望 Copilot 作为模型使用,你可以使用 #file: path/to/test-file.js
提供文件路径,并在提示中包含该信息。
示例响应
Note
以下响应是示例。 Copilot Chat 响应是不确定的,所以你可能会得到与这里所显示的不同的响应。
Copilot 会提供一个端到端测试,你可以将其用于你的应用程序。
import { test, expect } from '@playwright/test';
test.describe('ProductDetails Component', () => {
test.beforeEach(async ({ page }) => {
// Set up API mocking
await page.route('/api/product/1', async (route) => {
await route.fulfill({
status: 200,
contentType: 'application/json',
body: JSON.stringify({
name: 'Test Product',
description: 'This is a test product',
price: 99.99
})
});
});
// Mock error response for product ID 999
await page.route('/api/product/999', async (route) => {
await route.fulfill({
status: 404,
contentType: 'application/json',
body: JSON.stringify({ error: 'Product not found' })
});
});
});
test('displays loading state initially', async ({ page }) => {
await page.goto('/product/1');
const loadingElement = page.locator('text=Loading...');
await expect(loadingElement).toBeVisible();
});
test('displays product details correctly', async ({ page }) => {
await page.goto('/product/1');
// Wait for loading to disappear
await expect(page.getByText('Loading...')).toBeHidden();
// Check all product details
await expect(page.locator('h2')).toHaveText('Test Product');
await expect(page.locator('text=This is a test product')).toBeVisible();
await expect(page.locator('text=Price: $99.99')).toBeVisible();
});
test('displays error message when product not found', async ({ page }) => {
await page.goto('/product/999');
// Wait for loading to disappear
await expect(page.getByText('Loading...')).toBeHidden();
// Check error message
await expect(page.locator('text=Error: Product not found')).toBeVisible();
});
});