forked from opentiny/tiny-vue
10 lines
339 B
TypeScript
10 lines
339 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('底部分割线', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('time-line#show-divider')
|
|
|
|
const steps = page.locator('.pc-demo .tiny-steps')
|
|
await expect(steps.locator('.tiny-steps__bottom-divider')).toBeVisible()
|
|
})
|