Files
crowd-funder-for-time-pwa/test-playwright/01-check-activity-feed.spec.ts
2024-07-26 18:16:20 +08:00

12 lines
381 B
TypeScript

import { test, expect } from '@playwright/test';
test('Check activity feed', async ({ page }) => {
// Load app homepage
await page.goto('./');
// Check that initial 10 activities have been loaded
await page.locator('li:nth-child(10)');
// Scroll down a bit to trigger loading additional activities
await page.locator('li:nth-child(50)').scrollIntoViewIfNeeded();
});