اختبارات شاملة باستخدام Playwright/Cypress
نفّذ اختبارات شاملة باستخدام أدوات مثل Playwright أو Cypress لمحاكاة تفاعلات المستخدم والتحقق من تدفقات التطبيق بالكامل.
اختبارات شاملة باستخدام Playwright/Cypress درس مجاني في Next.js 15 Fullstack (App Router + Server Actions) على CoddyKit. هذا هو الدرس 3 من أصل 4. يمكنك قراءة الدرس كاملاً أدناه مجاناً — ثم تمرن عليه مباشرة في المتصفح باستخدام محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7. هذا الدرس جزء من مسار التعلم في Next.js 15 Fullstack (App Router + Server Actions)، وتقدمك يتزامن عبر الويب وتطبيق CoddyKit. تتضمن دورة Next.js 15 Fullstack (App Router + Server Actions) 4 دروس في المجموع.
بعض أجزاء هذا الدرس لم تُترجم بعد وتظهر باللغة الإنجليزية.
What is End-to-End Testing?
End-to-End (E2E) testing simulates a real user's journey through your application, from start to finish. It tests the entire flow, including the UI, database, network requests, and server logic.
Think of it as ensuring all the pieces of your Next.js application work together seamlessly, just like a user would expect.
Why E2E for Next.js?
For Next.js applications, E2E testing is crucial because they often involve complex interactions between client and server components, API routes, and external services.
- Verifies Integrations: Checks if different parts (frontend, backend, database) communicate correctly.
- User Experience: Ensures critical user flows, like login or checkout, function as intended.
- Confidence: Provides high confidence that new features or changes haven't broken existing functionality.
Introducing Playwright
While Cypress is another popular choice, we'll focus on Playwright for E2E testing in Next.js. Playwright is a powerful open-source framework from Microsoft that enables reliable end-to-end testing.
Key features:
- Supports all modern browsers (Chromium, Firefox, WebKit).
- Fast and reliable test execution.
- Auto-waits for elements to be ready.
- Rich set of APIs for interacting with web pages.
Setting Up Playwright
Getting Playwright ready in your Next.js project is straightforward. You'll typically run an initialization command that sets up the necessary files and installs browser binaries.
Open your terminal in your Next.js project and run:
npm init playwright@latestYour First E2E Test
Let's write a basic test to navigate to your application's homepage and verify its title. Playwright tests are written using a test runner similar to Jest.
After setup, you'll find a tests/example.spec.ts file. Modify it:
import { test, expect } from '@playwright/test';
test('homepage has title', async ({ page }) => {
await page.goto('http://localhost:3000/');
await expect(page).toHaveTitle(/Next.js App/);
});Interacting with UI Elements
Playwright allows you to simulate user actions like clicking buttons or typing into input fields. You select elements using CSS selectors, text content, or specific roles.
Here's how to fill an input and click a button:
import { test, expect } from '@playwright/test';
test('user can interact with elements', async ({ page }) => {
await page.goto('http://localhost:3000/contact'); // Assume a contact page
await page.fill('input[name="name"]', 'Coddy Kit');
await page.click('button[type="submit"]');
// After clicking, we might expect a success message to appear
await expect(page.locator('.success-message')).toBeVisible();
});Assertions and Visibility
Assertions are key to E2E tests, verifying that your application behaves as expected. Playwright's expect provides many matchers to check element properties, text, and visibility.
Let's verify text content and visibility:
import { test, expect } from '@playwright/test';
test('elements display correct text', async ({ page }) => {
await page.goto('http://localhost:3000/about');
const heading = page.locator('h1');
await expect(heading).toHaveText('About Us');
const paragraph = page.locator('p');
await expect(paragraph).toContainText('Our mission');
});Testing Form Submissions
E2E tests are perfect for validating entire form submission flows, ensuring data is sent to the server, processed, and the UI updates correctly. This covers both client-side and server-side logic.
Consider a contact form:
import { test, expect } from '@playwright/test';
test('submit contact form successfully', async ({ page }) => {
await page.goto('http://localhost:3000/contact');
await page.fill('input[name="email"]', 'test@example.com');
await page.fill('textarea[name="message"]', 'Hello CoddyKit!');
await page.click('button[type="submit"]');
await expect(page.locator('.form-status')).toHaveText('Message sent!');
});Running Your Tests
Once your tests are written, you can easily run them from the command line. Playwright offers various options, like running tests in headless mode (without opening a browser) or with a UI for debugging.
To run all tests:
npx playwright testE2E Best Practices
Writing effective E2E tests requires careful planning to make them robust and maintainable. Which of these are good practices?
Recap: E2E Testing
Congratulations! You've explored End-to-End testing for Next.js applications using Playwright.
- E2E tests simulate real user journeys.
- Playwright is a powerful tool for cross-browser E2E testing.
- You learned to set up Playwright, write tests for navigation, user interaction, and form submissions.
- Remember to follow best practices for robust and maintainable E2E tests.
الأسئلة الشائعة
هل درس «اختبارات شاملة باستخدام Playwright/Cypress» مجاني؟
نعم — نص درس «اختبارات شاملة باستخدام Playwright/Cypress» كامل متاح مجاناً هنا على الويب. لتمرينه بشكل تفاعلي (محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7) وفتح باقي دورة Next.js 15 Fullstack (App Router + Server Actions)، انتقل إلى CoddyKit PRO. تتضمن دورة Next.js 15 Fullstack (App Router + Server Actions) 4 دروس في المجموع.
ماذا ستتعلم في «اختبارات شاملة باستخدام Playwright/Cypress»؟
نفّذ اختبارات شاملة باستخدام أدوات مثل Playwright أو Cypress لمحاكاة تفاعلات المستخدم والتحقق من تدفقات التطبيق بالكامل. تتمرن على Next.js 15 Fullstack (App Router + Server Actions) مع أكواد عملية تشغلها مباشرة في المتصفح، ومدرس ذكاء اصطناعي متاح 24/7 يجيب على أسئلتك أثناء عملك.
هل أحتاج إلى خبرة سابقة لأبدأ Next.js 15 Fullstack (App Router + Server Actions)؟
لا تُشترط خبرة سابقة. Next.js 15 Fullstack (App Router + Server Actions) على CoddyKit منظم للمبتدئين حتى المتقدمين، لذا يمكنك البدء من هنا أو من البداية والتقدم بسرعتك الخاصة. هذا هو الدرس 3 من أصل 4.
كم من الوقت يستغرق درس «اختبارات شاملة باستخدام Playwright/Cypress»؟
معظم دروس CoddyKit تستغرق حوالي 5–10 دقائق. كل منها موجز وتفاعلي، لذا تحرز تقدماً مستمراً وتستأنف من حيث توقفت عبر الويب والتطبيق.
هل يمكنني كتابة وتشغيل أكواد في درس Next.js 15 Fullstack (App Router + Server Actions) هذا؟
نعم. كل درس في Next.js 15 Fullstack (App Router + Server Actions) يتضمن محرر أكواد مدمج، لذا تكتب وتشغل أكواداً حقيقية مباشرة في متصفحك وتحصل على تعليقات فورية من الذكاء الاصطناعي — بدون إعداد محلي.
جميع الدروس في هذه الدورة
- اختبار الوحدات للمكوّنات
- اختبار التكامل للصفحات
- اختبارات شاملة باستخدام Playwright/Cypress
- محاكاة واختبار مسارات API