0f6f91e61a
Restore alert history filters and stats fields, paginate command/session logs for the SPA, show script labels on schedules, and land integration/E2E coverage with rebuilt web assets.
10 lines
350 B
JavaScript
10 lines
350 B
JavaScript
/** E2E-SRV-002 — servers page has no CSV export button */
|
|
import { test, expect } from '../fixtures.mjs'
|
|
import { login, nav } from '../helpers.mjs'
|
|
|
|
test('E2E-SRV-002 no CSV export button', async ({ page }) => {
|
|
await login(page)
|
|
await nav(page, '/servers')
|
|
await expect(page.getByRole('button', { name: /导出|CSV/i })).toHaveCount(0)
|
|
})
|