tiny-vue_version0/examples/sites/demos/pc/app/bulletin-board/url.spec.ts

13 lines
467 B
TypeScript

import { test, expect } from '@playwright/test'
test('BulletinBoard 基于Url的跳转', async ({ page }) => {
page.on('pageerror', (exception) => expect(exception).toBeNull())
await page.goto('bulletin-board#url')
const preview = page.locator('#url')
const contentTitle = preview.locator('.tiny-bulletin-board__textTitle')
// a标签href属性值
await expect(contentTitle).toHaveAttribute('href', 'localhost:3000/#/webcore/zh-CN/guide/changelog')
})