mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-08-31 23:17:19 +00:00
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import { expect, test } from '@playwright/test'
|
|
|
|
test('dashboard inbox link', async ({ page }) => {
|
|
await page.goto('/dashboard')
|
|
await page.getByRole('link', { name: 'Documents in inbox' }).click()
|
|
await expect(page).toHaveURL(/tags__id__in=1/)
|
|
await expect(page.locator('pngx-document-list')).toHaveText(/8 documents/)
|
|
})
|
|
|
|
test('dashboard total documents link', async ({ page }) => {
|
|
await page.goto('/dashboard')
|
|
await page.getByRole('link').filter({ hasText: 'Total documents' }).click()
|
|
await expect(page).toHaveURL(/documents/)
|
|
await expect(page.locator('pngx-document-list')).toHaveText(/61 documents/)
|
|
await page.getByRole('button', { name: 'Reset filters' })
|
|
})
|
|
|
|
test('dashboard saved view show all', async ({ page }) => {
|
|
await page.goto('/dashboard')
|
|
await page
|
|
.locator('pngx-widget-frame')
|
|
.filter({ hasText: 'Inbox' })
|
|
.getByRole('link', { name: 'Show all' })
|
|
.first()
|
|
.click()
|
|
await expect(page).toHaveURL(/view\/1/)
|
|
await expect(page.locator('pngx-document-list')).toHaveText(/8 documents/)
|
|
})
|
|
|
|
test('dashboard saved view document links', async ({ page }) => {
|
|
await page.goto('/dashboard')
|
|
await page
|
|
.locator('pngx-widget-frame')
|
|
.filter({ hasText: 'Inbox' })
|
|
.locator('table')
|
|
.getByRole('link', { name: /test/ })
|
|
.first()
|
|
.click({ position: { x: 0, y: 0 } })
|
|
await expect(page).toHaveURL(/documents\/1\/details/)
|
|
})
|
|
|
|
test('test slim sidebar', async ({ page }) => {
|
|
await page.goto('/dashboard')
|
|
await page.locator('.sidebar-slim-toggler').click()
|
|
await expect(
|
|
page.getByRole('link', { name: 'Dashboard' }).getByText('Dashboard')
|
|
).toBeHidden()
|
|
await page.locator('.sidebar-slim-toggler').click()
|
|
await expect(
|
|
page.getByRole('link', { name: 'Dashboard' }).getByText('Dashboard')
|
|
).toBeVisible()
|
|
})
|