forked from opentiny/tiny-vue
12 lines
417 B
TypeScript
12 lines
417 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('基本用法', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('floatbar#base')
|
|
|
|
const floatbar = page.locator('.tiny-float-bar')
|
|
await expect(floatbar).toBeVisible()
|
|
await expect(floatbar).toHaveCSS('right', '10px')
|
|
await page.getByRole('listitem').filter({ hasText: 'Default-A' }).click()
|
|
})
|