We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60057c9 commit f91a874Copy full SHA for f91a874
tests/pages.spec.js
@@ -1,14 +1,14 @@
1
const { test, expect } = require('@playwright/test');
2
3
test('homepage', async ({ page }) => {
4
- await page.goto('/');
+ await page.goto('/rossum-sa-handbook/');
5
6
await expect(page.getByRole('heading')).toContainText('The Solution Architect\'s Handbook');
7
await expect(page.getByRole('paragraph')).toContainText('Build something cool with Rossum.ai and @mrtnzlml');
8
});
9
10
test('main navigation (Learn button)', async ({ page }) => {
11
12
13
await page.getByLabel('Main', { exact: true }).getByRole('link', { name: 'Learn' }).click();
14
await expect(page.locator('h1')).toContainText('AI training best practices');
0 commit comments