20 lines
723 B
TypeScript
20 lines
723 B
TypeScript
import { expect, test } from '@playwright/test'
|
|
|
|
test('手动缓存', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('select#memoize-usage')
|
|
const wrap = page.locator('#memoize-usage')
|
|
const select = wrap.locator('.tiny-select')
|
|
const dropdown = page.locator('body > .tiny-select-dropdown')
|
|
const option = dropdown.locator('.tiny-option')
|
|
const cacheValue = wrap.locator('.cache-value')
|
|
|
|
await select.click()
|
|
await option.filter({ hasText: '北京' }).click()
|
|
await expect(cacheValue).toContainText(['选项1'])
|
|
|
|
await select.click()
|
|
await option.filter({ hasText: '上海' }).click()
|
|
await expect(cacheValue).toContainText(['选项2'])
|
|
})
|