Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions frontend/tests/e2e/doc_test_4.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,16 @@ test('use prince with lots of books', async ({ page }) => {
await page.getByPlaceholder('Search Heart Languages').click()
await page.getByPlaceholder('Search Heart Languages').fill('ont')
await page.getByText('Ontenu').click()
await expect(page.getByRole('button', { name: 'Next' })).toBeEnabled({ timeout: 15_000 })
await page.getByRole('button', { name: 'Next' }).click()
Comment on lines +42 to 43
await page.getByText('Select all').click()
await page.getByRole('button', { name: 'Old Testament' }).click()
await page.getByRole('button', { name: 'New Testament' }).click()
await expect(page.getByRole('button', { name: 'Next' })).toBeEnabled({ timeout: 15_000 })
await page.getByRole('button', { name: 'Next' }).click()
Comment on lines +47 to 48
await page.getByText('Unlocked Literal Bible').first().click()
await page.getByText('Unlocked Literal Bible').nth(1).click()
await page.getByText('Unlocked Literal Bible').first().click({ timeout: 120_000 })
await page.getByText('Regular').click({ timeout: 30_000 })
await expect(page.getByRole('button', { name: 'Next' })).toBeEnabled({ timeout: 60_000 })
await page.getByRole('button', { name: 'Next' }).click()
Comment on lines +51 to 52
await page.getByRole('radio', { name: 'PDF' }).click()
await page.getByText('Interleave content by chapter').click()
Expand Down
Loading