tiny-vue/examples/sites/demos/pc/app/grid/expand/has-row-expand.spec.js

11 lines
487 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { test, expect } from '@playwright/test'
test('检查当前行是否展开', async ({ page }) => {
page.on('pageerror', (exception) => expect(exception).toBeNull())
await page.goto('grid-expand#expand-has-row-expand')
await page.getByRole('row', { name: '1 GFD科技YX公司 华东区 800' }).locator('i').click()
await page.locator('div').filter({ hasText: '当前展开行1' }).nth(1).click()
await expect(page.locator('div:nth-child(2) > svg')).toBeVisible()
})