-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathpython.spec.ts
67 lines (49 loc) · 2.57 KB
/
python.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { test, expect } from './baseTest';
test.beforeEach(async ({page}) => {
await page.goto('/python/');
})
test('homepage has Playwright in title and get started link linking to the intro page', async ({ page }) => {
// Expect a title "to contain" a substring.
await expect(page).toHaveTitle(/Playwright/);
// create a locator
const getStarted = page.locator('text=Get Started');
// Expect an attribute "to be strictly equal" to the value.
await expect(getStarted).toHaveAttribute('href', '/python/docs/intro');
// Click the get started link.
await getStarted.click();
await expect(page.getByRole('heading', { name: 'Installing Playwright Pytest' })).toBeVisible();
});
test.describe('next switcher', () => {
test('home -> next intro', async ({ page, switchToNext }) => {
const getStarted = page.locator('text=Get Started');
await expect(getStarted).toHaveAttribute('href', '/python/docs/intro');
await expect(page).toHaveURL(/\/$/);
await switchToNext();
await expect(page).toHaveURL(/\/python\/docs\/next\/intro$/);
await expect(page.locator('text=Get started by installing Playwright')).toBeVisible();
});
test('community -> next intro', async ({ page, switchToNext }) => {
await page.goto('/python/community/welcome');
await expect(page.locator('text=Welcome to the Playwright Community')).toBeVisible();
await expect(page).toHaveURL(/\/python\/community\/welcome$/);
await switchToNext();
await expect(page).toHaveURL(/\/python\/docs\/next\/intro$/);
await expect(page.locator('text=Get started by installing Playwright')).toBeVisible();
});
test('docs -> next docs', async ({ page, switchToNext }) => {
await page.goto('/python/docs/locators');
await expect(page.locator('text=locators represent a way to find')).toBeVisible();
await expect(page).toHaveURL(/\/python\/docs\/locators$/);
await switchToNext();
await expect(page).toHaveURL(/\/python\/docs\/next\/locators$/);
await expect(page.locator('text=locators represent a way to find')).toBeVisible();
});
test('api -> next api (with fragment)', async ({ page, switchToNext }) => {
await page.goto('/python/docs/api/class-browser#browser-version');
await expect(page.locator('text=Returns the browser version.')).toBeVisible();
await expect(page).toHaveURL(/\/python\/docs\/api\/class-browser#browser-version$/);
await switchToNext();
await expect(page.locator('text=Returns the browser version.')).toBeVisible();
await expect(page).toHaveURL(/\/python\/docs\/next\/api\/class-browser#browser-version$/);
});
});