tiny-vue/examples/sites/demos/pc/app/grid/toolbar/grid-full-screen-height.spe...

9 lines
382 B
JavaScript

import { test, expect } from '@playwright/test'
test('全屏时改变表格高度', async ({ page }) => {
page.on('pageerror', (exception) => expect(exception).toBeNull())
await page.goto('grid-toolbar#toolbar-grid-full-screen-height')
await page.locator('.tiny-grid-fullscreen__btn').click()
await expect(page.locator('.tiny-grid').nth(1)).toHaveCSS('height', '680px')
})