forked from opentiny/tiny-vue
17 lines
655 B
TypeScript
17 lines
655 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('popup-style-position', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('select#popup-style-position')
|
|
|
|
const wrap = page.locator('#popup-style-position')
|
|
const select = wrap.locator('.tiny-select')
|
|
const dropdown = select.locator('.tiny-select__tags-group > .tiny-select-dropdown')
|
|
|
|
await select.click()
|
|
await expect(dropdown).toHaveCount(1)
|
|
await expect(dropdown).toHaveClass(/drop/)
|
|
await expect(dropdown).toHaveCSS('background-color', 'rgb(213, 232, 255)')
|
|
await expect(dropdown).toHaveAttribute('x-placement', 'top')
|
|
})
|