forked from opentiny/tiny-vue
9 lines
387 B
JavaScript
9 lines
387 B
JavaScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('表格分组', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('grid-row-grouping#row-grouping-row-grouping')
|
|
await page.locator('.tiny-grid-cell-group > .tiny-svg').first().click()
|
|
await expect(page.getByRole('cell', { name: 'GFD科技YX公司' })).toHaveCount(0)
|
|
})
|